
/* Start Scroll Top  */
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  color: #f29ef3;
  background-color: #000;
  width: 44px;
  height: 44px;
  border-radius: 9px;
  transition: all 0.4s;
}
.scroll-top:hover{
  background-color: #4a5798;
  color: white;
}
.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 15px;
}
/* End Scroll Top  */


@import url('https://fonts.googleapis.com/css2?family=Karla:ital,wght@0,200..800;1,200..800&display=swap');

* {
  margin: 0px;
  padding: 0px;
}
html, body {
  overflow-x: hidden; /* يمنع التمرير الأفقي */
}

body {
  font-family: "Karla", sans-serif;
  overflow-y: auto;
}

/* Start Navbar */

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: 0px;
  right: 0px;
  left: 0px;
  background-color: #f29ef3;
  z-index: 20;
}
.button {
  margin-left: 9px;
  padding: 0.4em 1em;
  border: none;
  outline: none;
  color: rgb(255, 255, 255);
  background: #1a191a;
  cursor: pointer;
  position: relative;
  z-index: 0;
  border-radius: 10px;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  margin-top: 5px;
}
.button:before {
  content: "";
  background: linear-gradient(45deg,
      #ff0000,
      #ff7300,
      #7507f1,
      #ff0062a4,
      #fffb00,
      #48ff00,
      #00ffd5,
      #002bff,
      #7a00ff,
      #ff00c8,
      #ff0000);
  position: absolute;
  top: -2px;
  left: -2px;
  background-size: 400%;
  z-index: -1;
  filter: blur(5px);
  -webkit-filter: blur(5px);
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  animation: glowing-button 20s linear infinite;
  transition: opacity 0.3s ease-in-out;
  border-radius: 10px;
}
@keyframes glowing-button {
  0% {
    background-position: 0 0;
  }

  50% {
    background-position: 400% 0;
  }

  100% {
    background-position: 0 0;
  }
}
.button:after {
  z-index: -1;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: #222;
  left: 0;
  top: 0;
  border-radius: 10px;
}
.edit-nav a {
  color: #220606f5;
  font-size: 20px;
  font-family: system-ui;
  font-weight: 600;
  letter-spacing: 1px;
}
.lelo {
  width: 85px;
}
.button:hover{
  color: white;
}
.navbar-toggler {
  border: none;
}

.navbar-toggler {
  transition: none !important; 
}

.navbar-toggler-icon {
  transform: none !important;  
}
.edit-nav a:hover{
  color: white;
}
/* End Navbar */

/* Start Header */
header {
  height: 630px;
  background-image: url(../img/website-full-stack-developer-vector-style-illustration-art-wallpaper-background_987764-23171.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 10;
}

.text {
  margin-top: 300px;
  z-index: 5;
}
.home h4 {
  color: #e6e1eb;
  font-size: 60px;
  font-weight: 800;
}
.home h1 {
  color: #e6e1eb;
  font-size: 50px;
  font-weight: 800;
}
@keyframes typing {
  0% {
    width: 0
  }
  40% {
    width: 13ch
  }
  60% {
    width: 13ch
  }
  100% {
    width: 0
  }
}
.neon-text {
  font-size: 4rem;
  color: #fff;
  text-shadow: 0 0 5px #ff005e, 0 0 10px #ff005e, 0 0 20px #ff005e, 0 0 40px #ff005e, 0 0 80px #ff005e;
  animation: glow 1.5s infinite alternate;
}
@keyframes glow {
  0% {
    text-shadow: 0 0 5px #ff005e, 0 0 10px #7a14ce, 0 0 20px #ff005e, 0 0 40px #ff005e, 0 0 80px #ff005e;
  }
  100% {
    text-shadow: 0 0 10px #00d4ff, 0 0 20px #00d4ff, 0 0 40px #00d4ff, 0 0 80px #00d4ff, 0 0 160px #00d4ff;
  }
}
.typewriter h1 {
  color: #fff;
  display: inline-block;
  border-right: .05em solid rgb(231, 226, 216);
  white-space: nowrap;
  overflow: hidden;
  text-shadow: none;
  animation: flicker 2s infinite,
    typing 4s steps(13, end) infinite,
    blink-caret .5s step-end infinite;
}
@keyframes flicker {
  0%,
  100% {
    text-shadow:
      0 0 5px #ff005e,
      0 0 10px #ff005e,
      0 0 20px #ff005e;
  }
  40% {
    text-shadow:
      0 0 5px #00aaff,
      0 0 10px #00aaff,
      0 0 20px #00aaff;
  }
}
.hint {
  font-family: "Story Script", sans-serif;
  font-weight: 400;
  font-size: 42px;
  color: #dbacac;
}
@media (max-width: 992px) {
  header {
    height: 500px;
    background-position: center;
  }

  .text {
    margin-top: 200px;
    text-align: center;
  }

  .home h1 {
    font-size: 40px;
    font-weight: 900;        
  }

  .home h4,
  .neon-text {
    font-size: 3rem;
    font-weight: 900;     
  }

  .hint {
    font-size: 28px;
    font-weight: 700;      
  }
}
@media (max-width: 768px) {
  header {
    height: 450px;
    background-position: center;
  }

  .text {
    margin-top: 150px;
    text-align: center;
  }

  .home h1 {
    font-size: 34px;
    font-weight: 900;      
  }

  .neon-text {
    font-size: 2.5rem;
    font-weight: 900;      
  }

  .hint {
    font-size: 24px;
    font-weight: 700;       
  }
}
@media (max-width: 576px) {
  header {
    height: 400px;
    background-position: center top;
  }

  .text {
    margin-top: 120px;
    text-align: center;
    padding: 0 15px;
  }

  .home h1 {
    font-size: 28px;
    font-weight: 900;        
  }

  .neon-text {
    font-size: 2rem;
    font-weight: 900;       
  }

  .hint {
    font-size: 20px;
    font-weight: 700;        
  }
}
@media (max-width: 400px) {
  header {
    height: 360px;
  }

  .text {
    margin-top: 100px;
    padding: 0 10px;
  }

  .home h1 {
    font-size: 24px;
    font-weight: 900;        
  }

  .neon-text {
    font-size: 1.8rem;
    font-weight: 900;         
  }

  .hint {
    font-size: 18px;
    font-weight: 700;        
  }
}
/* End Header */

/* Start About */
.about {
  border: 1px solid #efe6e6;
  border-radius: 10px;
  padding: 20px 15px 20px 55px;
  height: auto;
}
.about img {
  height: 322px;
}
.prag {
  font-size: 14px;
  color: #6d4db7;
  font-family: "Dancing Script", cursive;
  padding-right: 20px;
}
.star {
  border: 3px solid #efe2e2;
  border-radius: 10px;
  padding: 14px 14px 7px 14px;
  margin-left: 70px;
}
.message {
  font-family: "Story Script", sans-serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 2px;
}
.intro {
  font-size: 12px;
  margin-top: -5px;
  font-family: "Story Script", sans-serif;
}
hr {
  width: 76%;
  height: 10px;
  border: none;
  background: #db0c59;
  border-radius: 18px;
}
.about h1 {
  font-size: 47px;
  color: #11277c;
  font-weight: 700;
}
@media (max-width: 991px) {
  .about {
    padding: 20px 15px 20px 15px;
  }
  .about h1 {
    font-size: 36px;
  }
  .prag {
    font-size: 13px;
    padding-right: 0;
  }
  .message {
    font-size: 15px;
  }
  .intro {
    font-size: 11px;
  }
  .star {
    margin-top: 20px;
  }
}
@media (max-width: 767px) {
  .about {
    padding: 15px 10px;
  }
  .about h1 {
    font-size: 28px;
    text-align: center;
  }
  .prag {
    font-size: 12px;
    padding-right: 0;
    text-align: justify;
  }
  .message {
    font-size: 14px;
    text-align: center;
  }
  .intro {
    font-size: 10px;
    text-align: center;
  }
  .star {
    margin-top: 15px;
    padding: 10px;
  }
}
@media (max-width: 480px) {
  .about h1 {
    font-size: 24px;
  }
  .prag {
    font-size: 11px;
  }
  .message {
    font-size: 13px;
  }
  .intro {
    font-size: 9px;
  }
  .about {
    padding: 10px 5px;
  }
  .star {
    padding: 8px;
  }
}
@media (max-width: 767px) {
  .about .row {
    align-items: flex-start;  
  }
  .about img {
    display: block;
    margin-left: 0;            
  }
  .star {
    margin-left: 0 !important; 
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}
/* End About */

/* Start services */
.services_section {
  width: 100%;
  float: left;
  padding-top: 0px;
}
.services_taital {
  display: inline;
  padding: 3px 29px;
  background-color: #192a7cc9;
  color: white;
  font-family: system-ui;
  font-size: 30px;
}
.clear {
  clear: both;
}
.services_text {
  width: 100%;
  font-size: 14px;
  color: #343534;
  font-weight: bold;
  padding: 20px 0px 0px 0px;
  text-align: center;
  font-family: system-ui;
  font-family: "Dancing Script", cursive;
}
.services_section_2 {
  width: 100%;
  float: left;
  padding-top: 80px;
}
.box_main {
  width: 87%;
  border-radius: 27px;
  border-left: 11px solid #4a5798;
  cursor: pointer;
  height: auto;
  padding: 17px 0px;
  box-shadow: 0px 0px 60px 0px #f0f0ef;
  background-color: #d8d9df;
}
.edit {
  padding: 65px 0px;
}
.app_icon {
  width: 100%;
  margin: 0 auto;
  text-align: center;
  align-items: center;
  justify-content: center;
}
.app_icon_1 {
  margin: 0 auto;
  text-align: center;
  align-items: center;
  justify-content: center;
  display: none;
}
.services_text:hover {
  width: 100%;
  font-size: 14px;
  color: white;
  font-weight: bold;
  padding: 20px 0px 0px 0px;
  text-align: center;
  font-family: system-ui;
  font-family: "Dancing Script", cursive;
}
.box_main:hover {
  width: 87%;
  border-radius: 27px;
  border-left: 11px solid #b7b7b8d7;
  cursor: pointer;
  height: auto;
  padding: 17px 0px;
  box-shadow: 0px 0px 60px 0px #f0f0ef;
  background-color: #4a5798;
}
@media (max-width: 992px) {
  .services_taital {
    font-size: 26px;
    padding: 5px 20px;
  }
  .services_text {
    font-size: 15px;
  }
  .box_main {
    width: 95%;
    margin-bottom: 25px;
  }
}
@media (max-width: 768px) {
  .services_section_2 {
    padding-top: 40px;
  }
  .services_taital {
    font-size: 24px;
  }
  .box_main {
    width: 100%;
    padding: 15px;
  }
  .services_text {
    font-size: 14px;
  }
  .app_icon img {
    width: 60px;
  }
}
@media (max-width: 480px) {
  .services_taital {
    font-size: 20px;
    padding: 5px 15px;
  }
  .services_text {
    font-size: 13px;
  }
  .app_icon img {
    width: 50px;
  }
  .box_main {
    width: 100%;
    margin-bottom: 20px;
  }
}
/* End services */

/* Start Education */
.head h2 {
  display: inline;
  padding: 3px 29px;
  background-color: #192a7cc9;
  color: white;
  font-family: system-ui;
}
#Resume {
  padding: 5rem 0;
  overflow: hidden;
}
.resume-title {
  margin-bottom: 1.5rem;
  color: #6d4db7;
  font-size: 30px;
  font-family: "Story Script", sans-serif;
}
.resume-body {
  position: relative;
  margin-bottom: 1.5rem;
  padding-left: 1rem;
  border-left: 3px solid #f16599;
  color: rgba(0, 0, 0, 0.747);
}
.resume-body::after {
  content: "";
  position: absolute;
  top: 0;
  left: -8px;
  width: 15px;
  height: 15px;
  background: white;
  border-radius: 50%;
  border: 3px solid #f16599;
}
.resume-body h4 {
  color: #6d4db7;
  font-weight: bold;
  font-family: system-ui;
}
.resume-body .ul_bloodBank,
.resume-body .ul_movie,
.resume-body .ul_note,
.ul_bloodBank_in {
  list-style-type: disc;
  list-style-position: inside;
}
.resume-body p {
  margin-bottom: 1rem;
}
.resume-body>span {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background-color: #1c1a1c;
  font-weight: 500;
  color: #b19cb1;
  margin: 5px 0;
}
.lenda {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background-color: #1c1a1c;
  font-weight: 500;
  color: #b19cb1;
  margin: 5px 0;
}
.download {
  padding: 8px 15px;
  background-color: #e581d9;
  margin-left: 22px;
  border-radius: 15px;
}
/* End Education */

/* Start Skills */
.skill h2 {
  display: inline;
  padding: 2px 40px;
  background-color: #192a7cc9;
  color: white;
  font-family: system-ui;
}
.skill-section {
  border: 1px solid #0c28d3;
  padding-top: 60px;
  padding-bottom: 50px;
  border-radius: 41px;
}
.mang1 {
  font-size: 30px;
  font-weight: 700;
  color: #7d8dd7;
  font-family: system-ui;
}
.mang2 {
  font-size: 30px;
  font-weight: 700;
  color: #7d8dd7;
  font-family: system-ui;
}
.mang3 {
  font-size: 30px;
  font-weight: 700;
  color: #7d8dd7;
  font-family: system-ui;
}
.mang1::after {
  content: "";
  width: 129px;
  height: 1px;
  display: block;
  margin: 0 auto;
  margin-top: 7px;
  background-color: black;
}
.mang2::after {
  content: "";
  width: 232px;
  height: 1px;
  display: block;
  margin: 0 auto;
  margin-top: 7px;
  background-color: black;
}
.mang3::after {
  content: "";
  width: 145px;
  height: 1px;
  display: block;
  margin: 0 auto;
  margin-top: 7px;
  background-color: black;
}
.skill_box {
  display: flex;
  justify-content: center;
  margin: 6px 338px;
  cursor: pointer;
}
.img-box {
  padding: 6px;
  border: #3c3838 solid;
}
.skill_box img {
  width: 50px;
}
.skill_box2 {
  display: flex;
  justify-content: center;
  margin: 6px 338px;
  cursor: pointer;
}
.skill_box2 img {
  width: 50px;
}
@media (max-width: 992px) {
  .skill_box,
  .skill_box2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr); 
    gap: 25px;
    justify-items: center;
    margin: 6px auto;
  }
  .skill_box img,
  .skill_box2 img {
    width: 65px;
  }
  .mang3 + .skill_box {
    grid-template-columns: 1fr;     
    justify-items: center;
  }
}
@media (max-width: 768px) {
  .skill_box,
  .skill_box2 {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    justify-items: center;
    margin: 6px auto;
  }
  .mang3 + .skill_box {
    grid-template-columns: 1fr;
    justify-items: center;
  }
  .skill_box img,
  .skill_box2 img {
    width: 70px;
  }
  .mang1,
  .mang2,
  .mang3 {
    font-size: 24px;
  }
  .skill h2 {
    font-size: 20px;
    padding: 2px 25px;
  }
  .skill-section {
    padding: 40px 15px;
  }
}
/* End Skills */

/* Start Portfolio */
.portfolio {
  padding: 4rem 0;
}
.portfolio-box {
  position: relative;
  width: 100%;
  height: 18.5rem;
  overflow: hidden;
  margin-bottom: 1.2rem;
}
.portfolio-box img {
  width: 100%;
  height: 100%;
}
.portfolio-box .portfolio-info {
  background-color: rgb(181 174 181 / 69%);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
}
.portfolio-box .portfolio-info .caption {
  text-align: center;
  color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.portfolio-box .portfolio-info .caption h4 {
  display: block;
}
.portfolio-box:hover img {
  transform: scale(1.5);
  transition-duration: 1s;
  transition-property: all;
}
.portfolio-box:hover .portfolio-info {
  opacity: 1;
  visibility: visible;
  transition-duration: 1s;
  transition-property: all;
}
.last {
  display: inline;
  padding: 3px 29px;
  background-color: #192a7cc9;
  color: white;
  font-family: system-ui;
  font-size: 30px;
}
.portfolio p {
  font-family: "Playpen Sans", cursive;
}
.portfolio h4 {
  font-family: "Dancing Script", cursive;
}
.pro-link {
  padding: 8px;
  border-radius: 10px;
  background-color: #4a5798;
  color: white;
  margin-left: 11px;
}
.pro-link:hover {
  color: #4a5798;
  background-color: white;
}
/* End Portfolio */

/* Start Contact */
.con {
  color: #46323c;
  font-family: system-ui;
  font-size: 39px;
}
.bootstrap-select {
  width: 100% \0;
}
.bootstrap-select>.dropdown-toggle {
  width: 100%;
  padding-right: 25px;
}
.has-error .bootstrap-select .dropdown-toggle,
.error .bootstrap-select .dropdown-toggle {
  border-color: #b94a48;
}
.bootstrap-select.fit-width {
  width: auto !important;
}
.bootstrap-select:not([class*="col-"]):not([class*="form-control"]):not(.input-group-btn) {
  width: 100%;
}
.bootstrap-select .dropdown-toggle:focus {
  outline: thin dotted #333333 !important;
  outline: 5px auto -webkit-focus-ring-color !important;
  outline-offset: -2px;
}
.bootstrap-select.form-control {
  margin-bottom: 0;
  padding: 0;
  border: none;
}
.bootstrap-select.form-control:not([class*="col-"]) {
  width: 100%;
}
.bootstrap-select.form-control.input-group-btn {
  z-index: auto;
}
.bootstrap-select.btn-group:not(.input-group-btn),
.bootstrap-select.btn-group[class*="col-"] {
  float: none;
  display: inline-block;
  margin-left: 0;
}
.bootstrap-select.btn-group.dropdown-menu-right,
.bootstrap-select.btn-group[class*="col-"].dropdown-menu-right,
.row .bootstrap-select.btn-group[class*="col-"].dropdown-menu-right {
  float: right;
}
.form-inline .bootstrap-select.btn-group,
.form-horizontal .bootstrap-select.btn-group,
.form-group .bootstrap-select.btn-group {
  margin-bottom: 0;
}
.form-group-lg .bootstrap-select.btn-group.form-control,
.form-group-sm .bootstrap-select.btn-group.form-control {
  padding: 0;
}
.form-inline .bootstrap-select.btn-group .form-control {
  width: 100%;
}
.bootstrap-select.btn-group.disabled,
.bootstrap-select.btn-group>.disabled {
  cursor: not-allowed;
}
.bootstrap-select.btn-group.disabled:focus,
.bootstrap-select.btn-group>.disabled:focus {
  outline: none !important;
}
.bootstrap-select.btn-group .dropdown-toggle .filter-option {
  display: inline-block;
  overflow: hidden;
  width: 100%;
  text-align: left;
}
.bootstrap-select.btn-group .dropdown-toggle .fa-angle-down {
  position: absolute;
  top: 30% !important;
  right: -5px;
  vertical-align: middle;
}
.bootstrap-select.btn-group[class*="col-"] .dropdown-toggle {
  width: 100%;
}
.bootstrap-select.btn-group .dropdown-menu {
  border: 1px solid #ededed;
  box-shadow: none;
  box-sizing: border-box;
  min-width: 100%;
  padding: 20px 10px;
  z-index: 1035;
}
.dropdown-menu>li>a {
  background-color: transparent !important;
  color: #bcbcbc !important;
  font-size: 15px;
  padding: 10px 20px;
}
.bootstrap-select.btn-group .dropdown-menu.inner {
  position: static;
  float: none;
  border: 0;
  padding: 0;
  margin: 0;
  border-radius: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.bootstrap-select.btn-group .dropdown-menu li {
  position: relative;
}
.bootstrap-select.btn-group .dropdown-menu li.active small {
  color: #fff;
}
.bootstrap-select.btn-group .dropdown-menu li.disabled a {
  cursor: not-allowed;
}
.bootstrap-select.btn-group .dropdown-menu li a {
  cursor: pointer;
}
.bootstrap-select.btn-group .dropdown-menu li a.opt {
  position: relative;
  padding-left: 2.25em;
}
.bootstrap-select.btn-group .dropdown-menu li a span.check-mark {
  display: none;
}
.bootstrap-select.btn-group .dropdown-menu li a span.text {
  display: inline-block;
}
.bootstrap-select.btn-group .dropdown-menu li small {
  padding-left: 0.5em;
}
.bootstrap-select.btn-group .dropdown-menu .notify {
  position: absolute;
  bottom: 5px;
  width: 96%;
  margin: 0 2%;
  min-height: 26px;
  padding: 3px 5px;
  background: #f5f5f5;
  border: 1px solid #e3e3e3;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
  pointer-events: none;
  opacity: 0.9;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.bootstrap-select.btn-group .no-results {
  padding: 3px;
  background: #f5f5f5;
  margin: 0 5px;
  white-space: nowrap;
}
.bootstrap-select.btn-group.fit-width .dropdown-toggle .filter-option {
  position: static;
}
.bootstrap-select.btn-group.fit-width .dropdown-toggle .caret {
  position: static;
  top: auto;
  margin-top: 4px;
}
.bootstrap-select.btn-group.show-tick .dropdown-menu li.selected a span.check-mark {
  position: absolute;
  display: inline-block;
  right: 15px;
  margin-top: 5px;
}
.bootstrap-select.btn-group.show-tick .dropdown-menu li a span.text {
  margin-right: 34px;
}
.bootstrap-select.show-menu-arrow.open>.dropdown-toggle {
  z-index: 1036;
}
.bootstrap-select.show-menu-arrow .dropdown-toggle:before {
  content: '';
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-bottom: 7px solid rgba(204, 204, 204, 0.2);
  position: absolute;
  bottom: -4px;
  left: 9px;
  display: none;
}
.bootstrap-select.show-menu-arrow .dropdown-toggle:after {
  content: '';
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid white;
  position: absolute;
  bottom: -4px;
  left: 10px;
  display: none;
}
.bootstrap-select.show-menu-arrow.dropup .dropdown-toggle:before {
  bottom: auto;
  top: -3px;
  border-top: 7px solid rgba(204, 204, 204, 0.2);
  border-bottom: 0;
}
.bootstrap-select.show-menu-arrow.dropup .dropdown-toggle:after {
  bottom: auto;
  top: -3px;
  border-top: 6px solid white;
  border-bottom: 0;
}
.bootstrap-select.show-menu-arrow.pull-right .dropdown-toggle:before {
  right: 12px;
  left: auto;
}
.bootstrap-select.show-menu-arrow.pull-right .dropdown-toggle:after {
  right: 13px;
  left: auto;
}
.bootstrap-select.show-menu-arrow.open>.dropdown-toggle:before,
.bootstrap-select.show-menu-arrow.open>.dropdown-toggle:after {
  display: block;
}
.bs-searchbox,
.bs-actionsbox,
.bs-donebutton {
  padding: 4px 8px;
}
.bs-actionsbox {
  float: left;
  width: 100%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.bs-actionsbox .btn-group button {
  width: 50%;
}
.bs-donebutton {
  float: left;
  width: 100%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.bs-donebutton .btn-group button {
  width: 100%;
}
.bs-searchbox+.bs-actionsbox {
  padding: 0 8px 4px;
}
.bs-searchbox .form-control {
  margin-bottom: 0;
  width: 100%;
}
select.bs-select-hidden,
select.selectpicker {
  display: none !important;
}
select.mobile-device {
  position: absolute !important;
  top: 0;
  left: 0;
  display: block !important;
  width: 100%;
  height: 100% !important;
  opacity: 0;
}
.bootstrap-select>.btn {
  background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
  font-size: 15px;
  height: 33px;
  box-shadow: none !important;
  border: 0 !important;
  padding: 0;
  width: 100%;
  color: #bcbcbc !important;
}
.contact_form {
  border: 1px solid #ededed;
  box-shadow: 0 5px 14px rgba(0, 0, 0, 0.1);
  background-color: #f2f3f5;

  padding: 40px 30px;
}
.contact_form .form-control {
  background-color: rgb(201 197 199);
  margin-bottom: 30px;
  border: 1px solid #ebebeb;
  box-sizing: border-box;
  color: black;
  font-size: 16px;
  outline: 0 none;
  padding: 10px 25px;
  height: 55px;
  resize: none;
  box-shadow: none !important;
  width: 100%;
  border-radius: 0px;
}
.contact_form textarea {
  color: #bcbcbc;
  padding: 20px 25px !important;
  height: 160px !important;
}
.contact_form .form-control::-webkit-input-placeholder {
  color: rgb(7, 2, 2);
}
.contact_form .form-control::-moz-placeholder {
  opacity: 1;
  color: #bcbcbc;
  /* color: red; */
}
.contact_form .form-control::-ms-input-placeholder {
  color: #bcbcbc;
  color: red;
}
#contact {
  background-color: #f29ef3;
   min-height: 100vh;
  /* height: 730px; */
  display: flex;
  flex-direction: column;       
  justify-content: center; 
}
#contact .section-title p {
  color: #ffffff;
}
.contact_form textarea.form-control {
  min-height: 225px;
}
.form-group {
  position: relative;
}
.help-block {
  position: absolute;
  top: 100%;
  left: 0px;
}
button {
  font-family: inherit;
  font-size: 20px;
  background: #333034;
  color: white;
  padding: 0.7em 1em;
  padding-left: 0.9em;
  display: flex;
  align-items: center;
  border: none;
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.2s;
  cursor: pointer;
}
button span {
  display: block;
  margin-left: 0.3em;
  transition: all 0.3s ease-in-out;
}
button svg {
  display: block;
  transform-origin: center center;
  transition: transform 0.3s ease-in-out;
}
button:hover .svg-wrapper {
  animation: fly-1 0.6s ease-in-out infinite alternate;
}
button:hover svg {
  transform: translateX(1.2em) rotate(45deg) scale(1.1);
}
button:hover span {
  transform: translateX(5em);
}
button:active {
  transform: scale(0.95);
}
@keyframes fly-1 {
  from {
    transform: translateY(0.1em);
  }
  to {
    transform: translateY(-0.1em);
  }
}
/* Social Media Icons */
.social-media-list {
  position: relative;
  font-size: 22px;
  text-align: center;
  width: 100%;
  margin: 0 auto;
  padding: 0;
}
.social-media-list li a {
  color: #fff;
}
.social-media-list li {
  position: relative;
  display: inline-block;
  height: 60px;
  width: 60px;
  margin: 10px 3px;
  line-height: 60px;
  border-radius: 50%;
  color: #fff;
  background-color: rgb(27, 27, 27);
  cursor: pointer;
  transition: all .2s ease-in-out;
}
.social-media-list li:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 60px;
  height: 60px;
  line-height: 60px;
  border-radius: 50%;
  opacity: 0;
  box-shadow: 0 0 0 1px #fff;
  transition: all .2s ease-in-out;
}
.social-media-list li:hover {
  background-color: #fff;
}
.social-media-list li:hover:after {
  opacity: 1;
  transform: scale(1.12);
  transition-timing-function: cubic-bezier(0.37, 0.74, 0.15, 1.65);
}
.social-media-list li:hover a {
  color: #000;
}
@media screen and (max-width: 850px) {
  .social-media-list li {
    height: 60px;
    width: 60px;
    line-height: 60px;
  }
  .social-media-list li:after {
    width: 60px;
    height: 60px;
    line-height: 60px;
  }
}
.social-media-list li a {
  position: relative;
  z-index: 2;
}
.end {
  width: 110px;
}
@media (min-width: 992px) {
  #contact {
    padding: 80px 0;
  }
}
@media (max-width: 991px) and (min-width: 577px) {
  #contact {
    padding: 60px 20px;
    min-height: auto;         
  }
}
@media (max-width: 576px) {
  #contact {
    padding: 40px 15px;
    min-height: auto;        
  }
}
/* End Contact */























