/* ================================================== Start Global ================================================== */
:root {
  --main-color: #120702;
  --main-color-atl: #ffffff;

  --secondary-color: #db4444;
  --secondary-color-alt1: #fefaf1;
  --secondary-color-alt2: #f5f5f5;

  --gra-green: #47b486;
  --gra-red: #db4444;
  --gra-red-wight: #eb5757;

  --grey-background: rgb(233, 227, 227);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Poppins", sans-serif;
}

html {
  scroll-behavior: smooth;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
}

.container {
  max-width: 100%;
  margin: 0 auto;
}
/* ================================================== End Global ================================================== */

.about-main {
  margin-bottom: 100px;
}
.about-main .info {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60vh;
}
.about-main .info .pragraph {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  width: 800px;
  height: 500px;
}
.about-main .info .pragraph h2 {
  font-size: 30px;
  color: var(--main-color);
  font-weight: 800;
}
.about-main .info .pragraph p {
  font-size: 16px;
  color: var(--main-color);
  font-weight: 500 !important;
  line-height: 1.8;
}

.photo img {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 800px;
  height: 500px;
  box-shadow: rgba(0, 0, 0, 0.2) 0px 20px 30px;
  transition: 0.3s ease-in;
}
.photo img:hover {
  transform: scale(1.1);
}
.icons .info {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.icons .info ._flex {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border: 1px solid var(--main-color);
  padding: 50px;
  width: 280px;
  height: 230px;
  margin-left: 10px;
  cursor: pointer;
  transition: 0.2s ease;
  border-radius: 5px;
}

.icons i {
  margin-bottom: 20px;
  color: var(--main-color);
  cursor: pointer;
}

.icons h2 {
  font-size: 25px;
  font-weight: 600;
  color: var(--main-color);
}
.icons p {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  color: var(--main-color);
}
.icons .info ._flex:hover {
  background-color: var(--gra-red-wight);
  color: var(--secondary-color-alt1);
}

.word {
  text-align: center;
  justify-content: center;
}

.foater {
  margin-bottom: 100px;
  margin-top: 50px;
}
.foater .info {
  display: flex;
  align-items: center;
  justify-content: center;
}
.end {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 250px;
  height: 250px;
  text-align: center;
  margin-left: 100px;
  border: 1px solid var(--main-color);
  border-radius: 10px;
  cursor: pointer;
}
.end i {
  font-size: 30px;
  color: var(--main-color);
  margin-bottom: 30px;
}
.end h4 {
  font-size: 20px;
  color: var(--main-color);
  font-weight: 600;
}
.end p {
  color: var(--main-color);
  line-height: 1.5;
  font-weight: 400;
  font-size: 16px;
}

.ic {
  font-size: 30px;
  color: rgb(42, 42, 217);
  text-align: center;
  opacity: 0.5;
  transition: 2s;
}
.slider_team1:hover .ic {
  opacity: 1;
}

.slider .info {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 100px;
  margin-bottom: 100px;
}
.slider .info h3 {
  font-size: 20px;
  color: var(--main-color);
  font-weight: 500;
}
.slider .info p {
  font-size: 16px;
  color: #828282;
  line-height: 1.8;
  margin-top: 15px;
  font-weight: 400;
}
.slider_team {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.slider_team1 {
  position: relative;
  width: 310px;
  text-align: center;
  margin: 30px;
}

.slider_team1::after {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  top: 0;
  left: 0;
  background-color: rgb(93, 88, 88);
  opacity: 0;
  transition: 1s;
}
.picture {
  width: 180px;
  height: 180px;
  z-index: -2;
  border-radius: 50%;
  margin-bottom: 20px;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px,
    rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
  transition: 0.2s ease;
}
.picture:hover {
  transform: scale(1.35);
  transition: 2s;
}

.pt {
  margin: 0px 5%;
}
