.main_div {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  overflow-x: hidden;
}

.nav_background {
  position: absolute;
  top: 0;
  right: 0;
  height: 90%;
  width: 90%;
  z-index: -1;
  -webkit-clip-path: circle(90vh at 80% -2vh);
          clip-path: circle(90vh at 80% -2vh);
  background: -webkit-gradient(linear, left top, left bottom, from(transparent), to(#888888));
  background: linear-gradient(to bottom, transparent, #888888); 
  transform-origin: right top;
  transform: scale(.2);
  transition: all .1s ease;
} 

.nav_background.show{
  animation: nav_back_animate 1s 2s ease forwards;
} 

@keyframes nav_back_animate{
  to{ 
    transform: scale(1);
  }
}

button.btn {
  position: relative;
  padding: 7px 20px;
  font-weight: 600;
  border-radius: 20px;
  background: transparent;
  margin-top: 20px;
  margin: 10px 0px;
  font-size: 17px;
  -webkit-transition: .2s ease;
  transition: .2s ease;
  -webkit-box-shadow: var(--box-shadow);
          box-shadow: var(--box-shadow);
  border: 2px solid #273166; 
  font-family: inherit;
}

button.btn:hover {
  -webkit-box-shadow: none;
          box-shadow: none;
  border: 2px solid #8082ff;
  background: #505694;
}

button.btn:hover a {
  color: #ffffff !important;
}

button.btn a {
  text-decoration: none; 
  color: var(--text-color);
}

.nav_hamburger_background {
  position: fixed;
  top: 5px;
  right: 5px;
  height: 90px;
  width: 110px;
  background: var(--radial-gradient);
  z-index: -2;
  display: none;
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transform-origin: right top;
          transform-origin: right top;
  -webkit-transition: -webkit-transform .5s ease;
  transition: -webkit-transform .5s ease;
  transition: transform .5s ease;
  transition: transform .5s ease, -webkit-transform .5s ease;
  border-radius: 62% 10% 49% 100% / 68% 47% 44% 90%;
}

.nav_hamburger_background.show {
  -webkit-transform: scale(1);
          transform: scale(1);
}

.body_content_header .header_top {
  height: 100%;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

img.nav_background_img {
  margin-right: 9rem;
  margin-top: 9rem;
  height: 350px;
  z-index: -3;
}

@media (max-width: 700px) {
  .nav_hamburger_background {
    display: block;
  }
  .nav_background {
    width: 99%;
    -webkit-clip-path: circle(70vh at 90% -25vh);
            clip-path: circle(70vh at 90% -25vh);
  }
}

@media (max-width: 900px) {
  img.nav_background_img {
    display: none;
  }
}

@media (max-width: 1000px) and (min-width: 700px) {
  .nav_background {
    width: 85%;
    -webkit-clip-path: circle(90vh at 135% -10%);
            clip-path: circle(90vh at 135% -10%);
  }
  img.nav_background_img {
    margin-top: 80%;
    height: 200px;
  }
}

@media (max-width: 1300px) and (min-width: 1000px) {
  .nav_background {
    width: 99vw;
    -webkit-clip-path: circle(90vh at 85% -5%);
            clip-path: circle(90vh at 85% -5%);
  }
  img.nav_background_img {
    margin-right: 5rem;
    height: 250px;
  }
}

.container2 {
  position: relative;
  width: 100%;
  min-height: 100vh;
  padding: 2rem;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.form {
  width: 100%;
  max-width: 820px;
  background: var(--radial-gradient);
  border-radius: 10px;
  -webkit-box-shadow: var(--box-shadow);
          box-shadow: var(--box-shadow);
  overflow: hidden;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
      grid-template-columns: repeat(2, 1fr);
}

.contact-form2 {
  background: var(--radial-gradient);
  position: relative;
}

.circle {
  border-radius: 50%;
  background: var(--radial-gradient);
  position: absolute;
}

.circle.one {
  width: 130px;
  height: 130px;
  top: 130px;
  right: -40px;
}

.circle.two {
  width: 80px;
  height: 80px;
  top: 10px;
  right: 30px;
}

.contact-form2:before {
  content: "";
  position: absolute;
  width: 170px;
  height: 170px;
  background: var(--radial-gradient);
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  border-radius: 50%;
  top: 50px;
  left: -13px;
}

.form_tag {
  padding: 2.3rem 2.2rem;
  z-index: 10;
  overflow: hidden;
  position: relative;
}

.title {
  color: #fff;
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1;
  margin-bottom: 0.7rem;
}

.input-container {
  position: relative;
  margin: 1rem 0;
}

.input {
  width: 100%;
  outline: none;
  border: 2px solid var(--text-color);
  background: none;
  padding: 0.6rem 1.2rem;
  color: var(--text-color);
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  border-radius: 25px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

textarea.input {
  padding: 0.8rem 1.2rem;
  min-height: 150px;
  border-radius: 22px;
  resize: none;
  overflow-y: auto;
}

.input-container label {
  position: absolute;
  top: 50%;
  left: 15px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  padding: 0 0.4rem;
  color: var(--text-color);
  font-size: 0.9rem;
  font-weight: 400;
  pointer-events: none;
  z-index: 1000;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.input-container.textarea label {
  top: 1rem;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.btn {
  padding: 0.6rem 1.3rem;
  background-color: #fff;
  border: 2px solid var(--text-color);
  font-size: 0.95rem;
  color: ver(--text-color);
  line-height: 1;
  border-radius: 25px;
  outline: none;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  margin: 0;
  -webkit-box-shadow: var(--box-shadow);
          box-shadow: var(--box-shadow);
}

.btn:hover {
  background-color: transparent;
  color: #fff;
}

.input-container span {
  position: absolute;
  top: 0;
  left: 25px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 0.8rem;
  padding: 0 0.4rem;
  color: transparent;
  pointer-events: none;
  z-index: 500;
}

.input-container span:before,
.input-container span:after {
  content: "";
  position: absolute;
  width: 10%;
  opacity: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  height: 5px;
  background: var(--radial-gradient);
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.input-container span:before {
  left: 50%;
}

.input-container span:after {
  right: 50%;
}

.input-container.focus label {
  top: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 25px;
  font-size: 0.8rem;
}

.input-container.focus span:before,
.input-container.focus span:after {
  width: 50%;
  opacity: 1;
}

h3 {
  font-size: 1.4rem;
  font-weight: 400;
  padding: 5%;
  background: -webkit-gradient(linear, left top, left bottom, from(#0355f8), to(white));
  background: linear-gradient(#0355f8, white);
  color: transparent;
  -webkit-text-stroke: 1px #797979;
  -webkit-background-clip: text;
}

.contact-info {
  padding: 2.3rem 2.2rem;
  position: relative;
}

.contact-info .title {
  color: var(--text-color);
}

.text {
  color: #333;
  margin: 1.5rem 0 2rem 0;
}

.information {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #555;
  margin: 0.7rem 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 0.95rem;
}

.icon {
  width: 28px;
  margin-right: 0.7rem;
}

.social-media {
  padding: 2rem 0 0 0;
}

.social-media p {
  color: #333;
}

.social-icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 0.5rem;
}

.social-icons a {
  width: 35px;
  height: 35px;
  border-radius: 5px;
  background: var(--radial-gradient);
  color: var(--text-color);
  text-align: center;
  line-height: 35px;
  margin-right: 0.5rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.social-icons a:hover {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.contact-info:before {
  content: "";
  position: absolute;
  width: 110px;
  height: 100px;
  border: 22px solid var(--text-color);
  border-radius: 50%;
  bottom: -77px;
  right: 50px;
  opacity: 0.3;
}

.big-circle {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: var(--radial-gradient);
  bottom: 50%;
  right: 50%;
  -webkit-transform: translate(-40%, 38%);
          transform: translate(-40%, 38%);
}

.big-circle:after {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  background-color: #fafafa;
  border-radius: 50%;
  top: calc(50% - 180px);
  left: calc(50% - 180px);
}

.square {
  position: absolute;
  height: 400px;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(181%, 11%);
          transform: translate(181%, 11%);
  opacity: 0.2;
}

@media (max-width: 850px) {
  .form {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
  .contact-info:before {
    bottom: initial;
    top: -75px;
    right: 65px;
    -webkit-transform: scale(0.95);
            transform: scale(0.95);
  }
  .contact-form:before {
    top: -13px;
    left: initial;
    right: 70px;
  }
  .square {
    -webkit-transform: translate(140%, 43%);
            transform: translate(140%, 43%);
    height: 350px;
  }
  .big-circle {
    bottom: 75%;
    -webkit-transform: scale(0.9) translate(-40%, 30%);
            transform: scale(0.9) translate(-40%, 30%);
    right: 50%;
  }
  .text {
    margin: 1rem 0 1.5rem 0;
  }
  .social-media {
    padding: 1.5rem 0 0 0;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 1.5rem;
  }
  .contact-info:before {
    display: none;
  }
  .square,
  .big-circle {
    display: none;
  }
  form,
  .contact-info {
    padding: 1.7rem 1.6rem;
  }
  .text,
  .information,
  .social-media p {
    font-size: 0.8rem;
  }
  .title {
    font-size: 1.15rem;
  }
  .social-icons a {
    width: 30px;
    height: 30px;
    line-height: 30px;
  }
  .icon {
    width: 23px;
  }
  .input {
    padding: 0.45rem 1.2rem;
  }
  .btn {
    padding: 0.45rem 1.2rem;
  }
}
/*# sourceMappingURL=contact.css.map */




/* comment part  */


.comment {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 50px;
  width: 100%;
}

.comment input {
  font-size: 20px;
  padding: 10px;
  border: 2px solid gray;
  border-top-right-radius: 0px !important;
  border-bottom-right-radius: 0px !important;
  border-radius: 10px;
  background: transparent;
}

.comment input:focus {
  -webkit-box-shadow: var(--box-shadow);
          box-shadow: var(--box-shadow);
}

.comment  {
  min-width: 90%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

button {
  font-size: 20px;
  padding: 5px 20px;
  margin: 5px;
  border: none;
  outline: none;
  border-radius: 5px;
  -webkit-box-shadow: var(--box-shadow);
          box-shadow: var(--box-shadow);
  -webkit-transition: all .3s easy;
  transition: all .3s easy;
}

.comment input[type="submit"] {
  background: var(--radial-gradient);
  -webkit-box-shadow: var(--box-shadow);
          box-shadow: var(--box-shadow);
  border-top-left-radius: 0px;
  border-bottom-left-radius: 0px;
  border-top-right-radius: 10px !important;
  border-bottom-right-radius: 10px !important;
}



/* show comment  */

.comment_show{
  position: relative;
  height: 100%;
  width: 100%; 
}

.comment_header{
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin:5px 5% ;
  border-bottom: 1px solid var(--text-color);
  padding: 10px;
}

.comment_header .right{
  height: 40px;
  width: 40px;
  border: 2px solid var(--text-color);
  border-radius: 50%;
  display: grid;
  place-items: center;
  position: relative; 

}

.comment_header .right svg{
  position: absolute;
  width: 60%;
  height: 60%;
  fill: var(--text-color);
}

.comment_body{ 
  margin: 5px 10%; 
  display: flex; 
}

.comment_logo{
  height: 40px;
  width: 40px;
  border: 2px solid var(--text-color);
  border-radius: 50%;
  display: grid;
  place-items: center;
  position: relative;
  margin-top: 10px;
}

.comment_logo svg{
  position: absolute;
  width: 60%;
  height: 60%;
  fill: var(--text-color);
}

.comment_box{ 
  transform: translateX(20px); 
  padding: 10px; 
}
 
.comment_box p{ 
  word-break: break-all;
}




