:root {
    --background-color: #F8F9FA;
    --header-color: #00000050;
    --footer-color: #000000dc;
    --white: #ffffff;
    /* Primary */
    --primary-red: #f44336;
    --primary-green: #4caf50;
    --primary-black: #000000;
    --primary-blue: #2196f3;
    --primary-gray: #9e9e9e;
    /* Light */
    --light-green: #d4f8ca;
    --light-gray: #f5f5f5;
    /* DARK */
    --dark-blue: #1565c0;
    --dark-gray: #616161;
    /* TEXT */
    --font-dark-blue: #0f2540;
    --font-dark: #212121;
    --font-light: #757575;
    --text-color: #333333;
    --paragraph-color: #555555;

    /* TEXT SİZE */
    --font-xsmall: 1.2rem;
    /* 12px */
    --font-small: 1.4rem;
    /* 14px */
    --font-medium: 1.6rem;
    /* 16px */
    --font-smedium: 1.8rem;
    /*18px */
    --font-large: 2.4rem;
    /* 24px */
    --font-mlarge: 2.8rem;
    /* 28px */
    --font-xlarge: 3.2rem;
    /* 32px */
    --font-xxlarge: 4rem;
    /* 40px */



}

/* CSS RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
    border: none;
    text-decoration: none;
    text-transform: capitalize;


}

html {
    font-size: 62.5%;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body {
    background-color: var(--background-color);
    line-height: 1.5;
    font-family: "Kanit", sans-serif;
}

a {
    text-decoration: none;
    color: var(--white);
}

ol,
ul {
    list-style-type: none;
}

h1 {
    font-size: var(--font-xxlarge);
}

h2 {
    font-size: var(--font-xlarge);
}

h3 {
    font-size: var(--font-mlarge);
}

h4 {
    font-size: var(--font-large);
}

h5 {
    font-size: var(--font-smedium);
}

p {
    font-size: 2rem;
    opacity: 0.8;
}

a {
    font-size: 2rem;
}


/* CSS RESET END */

/* HEADER START */

header {
    position: sticky;
    top: 0;
    left: 0;
    z-index: 100;
    margin: 0 auto;
}

.header-wrapper {
    background: #fcfbfb7c;
    max-width: 100%;
    margin: 0 auto;
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
}

.header-left a {
    font-size: var(--font-xlarge);
    transition: 300ms all;
    color: var(--font-dark-blue);
}

.header-left a:hover {
    color: var(--primary-red);
}

.header-right {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}


.randevu {
    background-color: rgb(6, 177, 0);
    padding: 0 20px;
    font-size: 25px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: 400ms all;
    position: relative;
}

.randevu:hover {
    box-shadow: 0 0 30px #ffffff inset;
    transform: scale(1.1);
}

/* HEADER END */

/* Nav START */


.hamburger {
    position: relative;
    width: 30px;
    height: 4px;
    background-color: #000000;
    border-radius: 10px;
    cursor: pointer;
    z-index: 3;
    transition: 0.3s;
}

.hamburger:before,
.hamburger:after {
    content: "";
    position: absolute;
    height: 4px;
    right: 0;
    background-color: #000000;
    border-radius: 10px;
    transition: 0.3s;
}

.hamburger:before {
    top: -10px;
    width: 30px;
}

.hamburger:after {
    top: 10px;
    width: 30px;
}

.nav-wrapper input:checked+label .hamburger {
    background: transparent;
}

.nav-wrapper input:checked+label .hamburger:before {
    width: 30px;
    top: 0;
    transform: rotate(-45deg);
}

.nav-wrapper input:checked+label .hamburger:after {
    width: 30px;
    top: 0;
    transform: rotate(45deg);
}

#checkbox,
.hamburger {
    display: none;
}

.nav-wrapper {
    background-color: var(--font-dark);
    border-bottom: 4px solid var(--white);
    width: 100%;
    display: flex;
    align-items: center;

}

.nav-wrapper ul {
    display: flex;
    flex-wrap: wrap;

}

.nav-wrapper ul a {
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 1rem;
    transition: 300ms all;

}

.nav-wrapper ul li a:hover {
    box-shadow: 0 -1px 0px #fff inset,
        500px 0 0 rgba(247, 245, 245, 0.123)inset;
    padding: 15px;

}

#checkbox:checked~ul {
    transform: translate(0);
}

/* NAV END */
/* Main Start */

.container {

    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-evenly;
    gap: 2rem;
    padding-top: 2rem;
    background: url(img/shape-1.webp) no-repeat center /cover;

}

.content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.content-title {
    padding: 0 2rem;
}

.content img {
    width: 100%;
    max-width: 350px;

}

.content h1 {
    font-size: var(--font-xxlarge);
    line-height: 1.2;
    color: var(--font-dark-blue);
}

.btn2:hover::before {
    transform: translate(0);
}

.btn2-wp {
    margin-right: 6px;
    font-size: 2rem;
}

/* Main Content END */
/* ASİDE Start */
.service {
    display: flex;
    justify-content: center;
    flex-direction: column;

}

.service h2 {
    color: var(--primary-green);
}

.service a {
    color: var(--text-color);
    line-height: 1.8;
}

.service a:hover {
    color: var(--primary-red);
}

/* Aside END */

/* Article Start */

/* Article Wrapper Start */
.article-wrapper {
    display: flex;
    flex-grow: 1;
    flex-basis: 200;
    justify-content: space-around;
    padding: 1rem;
    flex-wrap: wrap;
    align-items: center;
    margin-top: 2rem;
}

.article-wrapper iframe {
    border-radius: 20px;
    box-shadow: rgba(0, 0, 0, 0.15) 0px 15px 25px, rgba(0, 0, 0, 0.05) 0px 5px 10px;


}

.article-title {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-top: 2rem;
}

.article-title h4 {
    color: var(--primary-green);
}


span {
    margin-top: 10px;
    font-size: 1.8rem;


}

.fa-check {
    margin-right: 10px;
    color: var(--primary-green);
    font-size: 2rem;
}

/* Article Wrapper END */

/* Aritcle CARD START */
.card {
    background-color: var(--light-green);
    margin-top: 1rem;
    padding-bottom: 4rem;
    border-radius: 20px;

}

.card h2 {
    text-align: center;
    color: var(--font-dark-blue);
    padding: 2rem;

}

.card-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;

}

.card-box {
    box-shadow: 0 0 15px #000000;
    border-radius: 20px;
    transition: 300ms all;
    position: relative;
    max-width: 300px;
    margin: 0 auto;

}


.card-box-title {
    position: absolute;
    bottom: 0;
    background: rgba(0, 0, 0, 0.555);
    border-radius: 20px;
    line-height: 1;
    width: 100%;
    padding: 10px;
}

.card-box:hover {
    transform: scale(1.1);
}

.card-box img {
    width: 100%;
    height: 300px;
    vertical-align: middle;
    border-radius: 20px;
    object-fit: cover;
    filter: brightness(80%);
}



.card-box-title h4 {
    text-align: center;
    color: var(--primary-green);

}

.card-box-title p {
    text-align: center;
    color: var(--white);
}

/* Article CARD END */

/* Article Content2 Start */
.content-2 {
    background-color: var(--light-gray);
    border-radius: 20px;
    padding: 1rem 2rem;
}

.content-2 h2 {
    color: var(--font-dark-blue);
    font-size: 0.1rem;
}

.content-2 ul li {
    color: var(--font-dark-blue);
    opacity: 0.3;
    font-size: var(--font-medium);
}

/* Article Content2 END */
/* Footer Start */

.footer-wrapper {
    background-color: var(--footer-color);
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.footer-card-wrapper {

    display: flex;
    flex-wrap: wrap;
}

.footer-wrapper a {
    color: var(--dark-gray);
    transition: 300ms all;
}

.footer-wrapper a:hover {
    color: var(--primary-red);
}

.footer-card {
    padding: 2rem;
    color: var(--white);

}

.footer-card h3 {
    color: var(--light-gray);

}

.footer-card p {
    color: var(--font-light);
}

.end {
    background-color: var(--footer-color);
    text-align: center;
    color: var(--white);
    padding: 1rem;

}

.end a {
    transition: 300ms all;
}

.end a:hover {
    color: var(--primary-red);
}

/* Footer END */


/* About HTML Service Start */
.about-service {
    border-top: 1px solid var(--dark-gray);
    margin-top: 1rem;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;

}

.about-service h2 {
    color: var(--primary-green);
}

.about-service a {
    color: var(--text-color);
    line-height: 1.8;
}

.about-service a:hover {
    color: var(--primary-red);
}

/* About HTML Service END*/
/* Service HTM Start*/
.service-htm {
    padding: 2rem;
}

.service-htm-box {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
}

.service-htm a {
    color: var(--font-dark-blue);
    border-bottom: 1px solid;
}

.service-htm a:hover {
    color: var(--primary-red);
}

.service-htm h2 {
    color: var(--font-dark-blue);
    opacity: 0.9;
    margin-bottom: 2rem;
    border-bottom: 1px solid;
}

.service-htm-box-items {
    margin-bottom: 1rem;
}

.service-btn {
    background-color: #000000;
    color: #fff;
    border: none;
}

/* Service HTM ENd*/

/* Gallery Start */
.galeri {
    padding: 2rem;
}

.galeri h3 {
    color: var(--font-dark-blue);
}

.gallery-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.gallery-container img,
.gallery-container iframe {
    margin-top: 3rem;
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 1px 1px 10px 5px;
    transition: 400ms all;
}

.gallery-container img:hover {
    transform: scale(1.1);
}

.gallery-container iframe:hover {
    transform: scale(1.1);
}

/* Gallery END */
/* Blog Start */
.blog {
    padding: 2rem;
    margin-top: 1rem;

}

.blog-container {
    display: grid;
    grid-template-columns: repeat(1, auto);
    gap: 3rem;
}

.blog-box {
    box-shadow: 0 0 15px 1px;
    padding: 2rem;
    width: 100%;
    max-width: 1000px;
    height: auto;
    border-radius: 30px;
    margin: 1rem auto;
    transition: 500ms all;
    background-color: rgba(0, 255, 0, 0.096);
}

.blog-box:hover {
    transform: scale(.9);
}

.blog-box h4 {
    color: var(--font-dark-blue);
}

.blog-box p {
    opacity: .7;
}

/* Blog End */
/* Contact Start */
.contact-container {
    margin: 1rem;

}

.contact-box {
    padding: 2rem;
    text-align: center;
    background-color: rgba(0, 255, 64, 0.151);
    margin: auto;
    color: rgb(0, 0, 0);
    border-radius: 20px;
}

.contact-box p {
    font-weight: 700;
}

.contact-box button i {
    font-size: 2.5rem;
    margin-right: 1rem;
}

.contact-box button {
    border-radius: 20px;
    padding: 10px 20px;
    margin: 2rem;
    background-color: #050505;
    transition: 300ms all;
    cursor: pointer;
}

.contact-box button:hover {
    background-color: var(--primary-red);
    transform: translateY(-10px);
}

.contact-box button a {
    font-weight: bolder;
    text-align: center;
    transition: 300ms all;
    font-size: 2rem;
}

.contact-box button a:hover {
    color: var(--primary-black);
}

/* Contact END */

/* Utility */

.btn2 {
    display: inline-block;
    background-color: var(--primary-red);
    font-size: 2rem;
    padding: 5px 20px;
    border-radius: 0 20px 0 20px;
    margin-top: 20px;
    transition: 400ms all;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    position: relative;
    overflow: hidden;
    z-index: 1;
    outline: none;
    vertical-align: middle;
}

.btn2::before {
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    position: absolute;
    background-color: var(--primary-green);
    border-radius: 0 20px 0 20px;
    transition: 400ms all;
    transform: translate(-230px);
    z-index: -1;
}