* {
  box-sizing: border-box;
}



html, body, html * {
  font-family: 'Roboto', sans-serif;
}


.container-insta {
  /* Default styles */
  width: 100%;
  padding: 20px;
}

.table-title
{
  margin-top: 100px;
  font-size: 8px;
  width:95%;


}
.creative-cards {
  padding: 120px 0;
  position: relative;
}
.creative-cards .container {
  max-width: 1320px;
  width: 100%;
  padding-right: 0.75rem;
  padding-left: 0.75rem;
  margin-right: auto;
  margin-left: auto;
}
.creative-cards .container .row {
  display: flex;
  flex-wrap: wrap;
}
.creative-cards .container .row .card-column {
  flex: 0 0 auto;
  width: 33.33333333%;
  text-align: center;
  max-width: 100%;
  padding-right: 15px;
  padding-left: 15px;
}
.card-details {
  width: 80%;
  margin: auto;
  position: relative;
  transition: 0.3s ease-in-out;
}
.card-details:before {
  content: "";
  width: 190px;
  height: 380px;
  background: #f7f6f2;

  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) skew(-20deg, 0deg);
  z-index: -1;
  transition: 0.3s ease-in-out;
}
.card-details:hover:before {
  background-color: #f6a2a2;
}
.card-icons {
  width: 140px;
  height: 150px;
  position: relative;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.card-icons:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  border: 1px solid;
  width: 100%;
  height: 100%;
  transform: skew(-20deg, 0deg);
  background: #fff;
  border-color: #e33335;
  transition: 0.3s ease-in-out;
}
.card-details:hover .card-icons:before {
  background-color: #e33335;
}
.card-icons img {
  position: relative;
  width: 70px;
  height: 70px;
}
.card-details h3 {
  margin-bottom: 15px;
  margin-top: 50px;
  font-weight: 700;
  font-size: 1.75rem;
  line-height: 1.2;
}
.card-details h3 a {
  color: #000;
  text-decoration: none;
}
.card-details p {
  font-size: 16px;
  line-height: 30px;
  color: #444;
  font-weight: 400;
  margin-bottom: 30px;
}
.read-more-btn {
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid;
  border-radius: 100%;
  margin: auto;
  background: #fff;
  transform: translateX(-10px);
  opacity: 0;
  visibility: hidden;
  border-color: #e33438;
  transition: 0.3s ease-in-out;
  text-decoration: none;
}
.card-details:hover .read-more-btn {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
}

/* ============= Responsive Ipad ==================== */
@media (max-width: 992px) {
  .creative-cards .container .row .card-column {
    flex: 0 0 auto;
    width: 50%;
    margin-bottom: 40px;
  }
}

/* ============= Responsive Iphone ==================== */
@media (max-width: 480px) {
  .creative-cards .container .row .card-column {
    flex: 0 0 auto;
    width: 100%;
    margin-bottom: 20px;
  }
  .card-details {
    width: 100%;
  }
  .read-more-btn {
    transform: translateX(0px);
    opacity: 1;
    visibility: visible;
  }
}

section {
  padding-block: min(20vh, 2rem);
  width: calc(min(76.5rem, 90%));
  margin-inline: auto;
  color: #111;

  h2 {
    text-transform: capitalize;
    letter-spacing: 0.025em;
    font-size: clamp(2rem, 1.8125rem + 0.75vw, 2.6rem);
  }

  a {
    display: inline-block;
    text-decoration: none;
  }

  .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
    gap: 2rem;    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
    gap: 2rem;

    .card {
      &:nth-child(1) .box .icon .iconBox {
        background: #fd8700;
      }
      &:nth-child(2) .box .icon .iconBox {
        background: #70b3b1;
      }
      &:nth-child(3) .box .icon .iconBox {
        background: #5dae4f;
      }

      ul {
        margin: 0;
        padding: 0;
        list-style-type: none;
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        gap: 0.625rem;

        li {
          text-transform: uppercase;
          background: var(--clr-tag);
          color: #282828;
          font-weight: 700;
          font-size: 0.8rem;
          padding: 0.375rem 0.625rem;
          border-radius: 0.188rem;
        }

      }

      .content {
        padding: 0.938rem 0.625rem;

        h3 {
          text-transform: capitalize;
          font-size: clamp(1.5rem, 1.3909rem + 0.4364vw, 1.8rem);
        }

        p {
          margin: 0.625rem 0 1.25rem;
          color: #565656;
        }
      }
    }

    .card-inner {
      position: relative;
      width: inherit;
      height: 18.75rem;
      background: var(--clr);
      border-radius: 1.25rem;
      border-bottom-right-radius: 0;
      overflow: hidden;

      .box {
        width: 100%;
        height: 100%;
        background: #fff;
        border-radius: 1.25rem;
        overflow: hidden;

        .imgBox {
          position: absolute;
          inset: 0;

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

        .icon {
          position: absolute;
          bottom: -0.375rem;
          right: -0.375rem;
          width: 6rem;
          height: 6rem;
          background: var(--clr);
          border-top-left-radius: 50%;

          &:hover .iconBox {
            transform: scale(1.1);
          }

          &::before {
            position: absolute;
            content: "";
            bottom: 0.375rem;
            left: -1.25rem;
            background: transparent;
            width: 1.25rem;
            height: 1.25rem;
            border-bottom-right-radius: 1.25rem;
            box-shadow: 0.313rem 0.313rem 0 0.313rem #fff;
          }

          &::after {
            position: absolute;
            content: "";
            top: -1.25rem;
            right: 0.375rem;
            background: transparent;
            width: 1.25rem;
            height: 1.25rem;
            border-bottom-right-radius: 1.25rem;
            box-shadow: 0.313rem 0.313rem 0 0.313rem var(--clr);
          }

          .iconBox {
            position: absolute;
            inset: 0.625rem;
            background: #282828;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            transition: 0.3s;

            span {
              color: #fff;
              font-size: 1.5rem;
            }
          }
        }
      }
    }
  }
}
/*responsive*/
/*-----------------------------------------------------------------------------------
    Template Name: RectorMedikal
    Description: Medikal FirmasÄ±
    Author: BayramEREN
    Author URI: https://bayrameren.net
    Version: 1.0
-----------------------------------------------------------------------------------*/

* *::before,
*::after {
  box-sizing: border-box;
}

body {
  font-family: "Open Sans", Arial, sans-serif;
  min-height: 100vh;
  background-color: #fafafa;
  color: #262626;
  padding-bottom: 3rem;
}

img {
  display: block;
}

.container {
  max-width: 93.5rem;
  margin: 0 auto;
  padding: 0 2rem;
}

.btn {
  display: inline-block;
  font: inherit;
  background: none;
  border: none;
  color: inherit;
  padding: 0;
  cursor: pointer;
}

.btn:focus {
  outline: 0.5rem auto #4d90fe;
}

.visually-hidden {
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
}

/* Profile Section */

.profile {
  padding: 5rem 0;
}

.profile::after {
  content: "";
  display: block;
  clear: both;
}

.profile-image {
  float: left;
  width: calc(33.333% - 1rem);
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 3rem;
}

.profile-image img {
  border-radius: 50%;
}

.profile-user-settings,
.profile-stats,
.profile-bio {
  float: left;
  width: calc(66.666% - 2rem);
}

.profile-user-settings {
  margin-top: 1.1rem;
}

.profile-user-name {
  display: inline-block;
  font-size: 3.2rem;
  font-weight: 300;
  
}
a:link, a:visited {
  color: inherit; /* Inherit the color from the parent element */
  text-decoration: none; /* Remove underline */}
.profile-settings-btn {
  font-size: 2rem;
  margin-left: 1rem;
}

.profile-stats {
  margin-top: 2.3rem;
}

.profile-stats li {
  display: inline-block;
  font-size: 1.6rem;
  line-height: 1.5;
  margin-right: 4rem;
  cursor: pointer;
}

.profile-stats li:last-of-type {
  margin-right: 0;
}

.profile-bio {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.5;
  margin-top: 2.3rem;
}

.profile-real-name,
.profile-stat-count {
  font-weight: 600;
}

/* Gallery Section */

.gallery {
  display: flex;
  flex-wrap: wrap;
  margin: -1rem -1rem;
  padding-bottom: 3rem;
}

.gallery-item {
  position: relative;
  flex: 1 0 22rem;
  margin: 1rem;
  color: #fff;
  cursor: pointer;
}

.gallery-item:hover .gallery-item-info,
.gallery-item:focus .gallery-item-info {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
}

.gallery-item-info {
  display: none;
}

.gallery-item-info li {
  display: inline-block;
  font-size: 1.7rem;
  font-weight: 600;
}

.gallery-item-likes {
  margin-right: 2.2rem;
}

.gallery-item-type {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 2.5rem;
  text-shadow: 0.2rem 0.2rem 0.2rem rgba(0, 0, 0, 0.1);
}

.fa-clone,
.fa-comment {
  transform: rotateY(180deg);
}

.gallery-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Loader */

/* Media Query */

@media screen and (max-width: 40rem) {
  .profile {
    display: flex;
    flex-wrap: wrap;
    padding: 4rem 0;
  }

  .profile::after {
    display: none;
  }

  .profile-image,
  .profile-user-settings,
  .profile-bio,
  .profile-stats {
    float: none;
    width: auto;
  }

  .profile-image img {
    width: 7.7rem;
  }

  .profile-user-settings {
    flex-basis: calc(100% - 10.7rem);
    display: flex;
    flex-wrap: wrap;
    margin-top: 1rem;
  }

  .profile-user-name {
    font-size: 2.2rem;
  }

  .profile-bio {
    font-size: 1.4rem;
    margin-top: 1.5rem;
  }

  .profile-bio,
  .profile-stats {
    flex-basis: 100%;
  }

  .profile-stats {
    order: 1;
    margin-top: 1.5rem;
  }

  .profile-stats ul {
    display: flex;
    text-align: center;
    padding: 1.2rem 0;
    border-top: 0.1rem solid #dadada;
    border-bottom: 0.1rem solid #dadada;
  }

  .profile-stats li {
    font-size: 1.4rem;
    flex: 1;
    margin: 0;
  }

  .profile-stat-count {
    display: block;
  }
}

/* Spinner Animation */

/*

The following code will only run if your browser supports CSS grid.

Remove or comment-out the code block below to see how the browser will fall-back to flexbox & floated styling. 

*/

@supports (display: grid) {
  .profile {
    display: grid;
    grid-template-columns: 1fr 2fr;
    grid-template-rows: repeat(3, auto);
    grid-column-gap: 3rem;
    align-items: center;
  }

  .profile-image {
    grid-row: 1 / -1;
  }

  .gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(22rem, 1fr));
    grid-gap: 2rem;
  }

  .profile-image,
  .profile-user-settings,
  .profile-stats,
  .profile-bio,
  .gallery-item,
  .gallery {
    width: auto;
    margin: 0;
  }

  @media (max-width: 40rem) {
    .profile {
      grid-template-columns: auto 1fr;
      grid-row-gap: 1.5rem;
    }

    .profile-image {
      grid-row: 1 / 2;
    }

    .profile-user-settings {
      display: grid;
      grid-template-columns: auto 1fr;
      grid-gap: 1rem;
    }

    .profile-stats,
    .profile-bio {
      grid-column: 1 / -1;
    }

    .profile-user-settings,
    .profile-settings-btn,
    .profile-bio,
    .profile-stats {
      margin: 0;
    }
  }
}

@media (max-width: 768px) {
  button {
    display: block; /* Mobilde butonlarÄ± gÃ¶ster */
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    z-index: 1;
  }
}

.fa-chevron-down:before {
  content: "\f078";
}
a,
body,
div,
h1,
h2,
html,
img,
li,
p,
span,
ul,
video {
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
}
ul {
  list-style: none;
}
body {
  font-family: "Raleway", sans-serif;
}
a {
  text-decoration: none;
}
:focus {
  outline: 0;
}
img {
  max-width: 100%;
  height: auto;
}
.container {
  width: 1180px;
  margin: auto;
}
.main {
  width: 100%;
  background-size: cover;
  background-position: bottom right;
  overflow: hidden;
  position: relative;
  float: left;
  height: 100%;
}


   .menu{
    margin:2px;
    padding:0;
    border:0;
    vertical-align:baseline
       }


.mainRector {
  height: 360px;
  height: 100vh;

}
.main .container {
  width: 1180px;
  margin: auto;
  position: relative;
}
.header {
  width: 100%;
  float: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  transition: all ease-in-out 0.3s;
  z-index: 3;
  position: relative;
}
.logo {
  float: left;
  width: 195px;
}
.menu {
  float: right;
  margin-left: 1px;
  margin-top: 0;
  position: relative;
  top: 5px;
}
.menu ul li {
  float: left;
  margin-left: 25px;
}
.menu > ul > li > a {
  color: #000;
  padding: 10px 2px;
  display: block;
  transition: all ease-in-out 0.3s;
  border-radius: 8px;
  margin-bottom: 15px;
}
.main .header {
  position: absolute;
  z-index: 2;
}
.main .main-content {
  position: absolute;
  margin-top: 15%;
  text-align: center;
  max-width: 45%;
  margin-left: 10%;
  margin-right: 10%;
  }
.main-content h1 {
  font-family: "Raleway", sans-serif;
  color: #000;
  margin-bottom: 20px;
}
.main-content p {
  color: #000;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 16px;
  font-weight: 300;
  font-family: "Raleway", sans-serif;
}
.main-content a {
  color: #fff;
  font-size: 22px;
  font-family: "Raleway", sans-serif;
  position: relative;
}
.main-content a:before {
  content: "";
  position: absolute;
  width: 158px;
  height: 3px;
  background: #e5ebf2;
  bottom: -10px;
  transition: all ease-in-out 0.3s;
}
.main-content a:hover:before {
  width: 100%;
}
.btn-rec {
  background: #e13434;
  color: #fff;
  padding: 16px 40px;
  border-radius: 10px;
  transition: all ease-in-out 0.3s;
  font-size: 17px;
}
.btn-rec:hover {
  background: #000000;
}
.footer-content h2 {
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: -0.5px;
  font-family: "Raleway", sans-serif;
  color: #191919;
  margin-bottom: 20px;
}
.footer-content p {
  color: #191919;
  font-size: 24px;
  letter-spacing: -0.5px;
  margin-bottom: 50px;
  font-family: "Raleway", sans-serif;
}
.content-2 {
  width: 100%;
  float: left;
  background: #eee;
  position: relative;
  overflow: hidden;
}
.footer-row {
  width: 100%;
  float: left;
  display: flex;
  align-items: center;
}
.footer-content {
  box-sizing: border-box;
  padding-left: 0;
  padding-right: 100px;
    display: inline-block;
    font-family: Sugarstyle_Millenial;
    font-size: 50px;
    letter-spacing: .6px;
    margin-top: 40px;
    text-align: center;
}
.footer-img {
  width: 70%;
  float: left;
  margin-top: 100px;
  margin-left: -10%;
  margin-right: -10%;
}
.footer {
  width: 100%;
  float: left;
  padding: 50px 0;
  box-sizing: border-box;
}
.social-menu {
  display: flex;
  align-items: center;
  width: 220px;
  float: right;
  justify-content: space-between;
  margin-bottom: 25px;
}
.social-menu a {
  transition: all ease-in-out 0.3s;
}
.social-menu a:hover {
  opacity: 0.6;
}
.copyright p {
  font-size: 18px;
  line-height: 24px;
  color: black;
  letter-spacing: -1px;
  font-weight: 400;
  width: 100%;
  float: left;
}
.footer-logo {
  float: left;
  width: 30%;
}
.copyright {
  float: right;
  margin-top: 0px;
  text-align: right;
  width: 50%;
}
.footer-img img {
  position: relative;
  transition: all ease-in-out 2s;
  right: 0;
}
.footer-row:hover img {
  right: 100px;
}
.box-shadow,
.menu-btn {
  display: none;
}
.social-menu a img {
  max-height: 25px;
}
.main video {
  width: 103%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  position: absolute;
  top: 50%;
  left: 50%;
}
.menu ul li ul {
  position: absolute;
  width: 290px;
  background: #f7f7f7;
  border-radius: 20px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
  padding: 10px 10px;
  box-sizing: border-box;
  visibility: hidden;
  transition: all ease-in-out 0.2s;
  margin-top: -30px;
  display: inline-block;
  z-index: 3;
}
.menu ul li a > i {
  font-size: 14px;
  margin-left: 5px;
  display: none;
}
.menu ul li ul li {
  margin-bottom: 5px;
  position: relative;
  float: left;
  width: 100%;
  margin-left: 0;
}
.menu ul li ul li a {
  color: #000000;
  font-size: 16px;
  padding: 10px;
  display: flex;
  width: 100%;
  float: left;
  position: relative;
  box-sizing: border-box;
  align-items: center;
  border-radius: 8px;
}
.menu ul li ul li a:hover {
  background: #f7f7f7;
  color: #e33335;
}
.menu ul li ul li a:before {
  content: "\f178";
  position: absolute;
  font-family: "Raleway";
  right: 30px;
  transition: all ease-in 0.2s;
  opacity: 0;
  font-size: 18px;
}
.menu ul li ul li a:hover:before {
  right: 15px;
  opacity: 1;
}
.menu ul li:hover ul {
  visibility: visible;
  margin-top: 0px;
}
.menu > ul > li:hover > a {
  background: #e33335;
  color: #000;
}
.footer-logos {
  width: 70%;
  float: right;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.logos {
  width: auto;
  float: left;
  margin-bottom: 0px;
  max-width: 130px;
  margin-left: 30px;
  filter: grayscale(1);
  transition: all ease-in-out 0.3s;
}
.footer-contact {
  width: 100%;
  float: left;
  margin-bottom: 15px;
  text-align: right;
}
.footer-contact a {
  width: 100%;
  float: left;
  color: #e5383b;
  margin-bottom: 5px;
  font-size: 20px;
  font-weight: 300;
}
.logos:hover {
  filter: grayscale(0);
}




