* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --succes-color: #2ecc71;
  --error-color: #e74c3c;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  line-height: 1.42857143;
  height: 100vh;

  color: #333;
}

.container {
  max-width: 1170px;
  margin: 0 auto;
  padding: 32px;
}

.main-contactus > * {
  margin-bottom: 5px;
}

a {
  text-decoration: none;
}

header {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #646161;
  padding: 0 120px;
  
}

header nav ul li {
  margin-left: 2px;
  display: inline-block;
}

header nav ul li a {
  color: white;
  background-color: #fb3b3b;
  padding: 17px 15px 0px 15px;
  margin-left: 2px;
  display: inline-block;
}

header nav ul li a:hover {
  cursor: pointer;
  color: hsl(255, 11%, 22%);
}

.hamburger {
  display: none;
}

.bar1 {
  display: block;
  width: 25px;
  height: 2px;
  margin: 5px auto;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  background-color: white;
}

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

  .nav-menu {
    position: fixed;
    left: 0;
    bottom: 100%;
    /* background-color: hsl(257, 27%, 26%); */
    width: 100%;
    /* display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center; */

    transition: 0.3s;
    /* box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05); */
  }

  header nav ul li {
    margin-bottom: 5px;
  }

  .nav-menu.active {
    bottom: 87%;
    background-color: white;
    justify-content: center;
  }

  .top {
    border-top: 1px solid hsl(257, 7%, 63%);
    padding: 1rem 0 0 0;
  }

  .nav-item {
    color: white;
    margin: 1rem 1rem;
  }

  .hamburger {
    display: block;
    cursor: pointer;
    background-color: #222;
    padding: 5px;
    margin: 5px 0;
  }
  .hamburger.active .bar1:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active .bar1:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
    background-color: white;
  }

  .hamburger.active .bar1:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
    background-color: white;
  }
  header {
    justify-content: flex-end;
  }
}

.header-logo .container > span {
  font-family: 'Courgette', cursive;
  font-size: 35px;
  padding-top: 20px;
  color: #646161;
}

.header-logo .container {
  display: flex;
  align-content: center;
  justify-content: flex-start;
  gap: 150px;
}

.main .container {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
}

.main-content {
  flex: 3;
}

.main-contactus {
  flex: 2;
}

.contetn-heading {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 15px;
}

#contact input[type='text'],
#contact input[type='email'],
#contact input[type='tel'],
#contact input[type='url'],
#contact textarea,
#contact button[type='submit'] {
  font: 400 12px/16px 'Roboto', Helvetica, Arial, sans-serif;
}

#contact h3 {
  display: block;
  font-size: 30px;
  font-weight: 300;
  margin-bottom: 10px;
}

#contact h4 {
  margin: 5px 0 15px;
  display: block;
  font-size: 13px;
  font-weight: 400;
}

fieldset {
  border: medium none !important;
  margin: 0 0 10px;
  min-width: 100%;
  padding: 0;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 30px;
  justify-content: space-between;
}

#contact input[type='text'],
#contact input[type='email'],
#contact input[type='tel'],
#contact input[type='url'],
#contact textarea {
  width: 75%;
  border: 1px solid #ccc;
  background: #fff;
  margin: 0 0 5px;
  padding: 10px;
}

#contact input[type='text']:hover,
#contact input[type='email']:hover,
#contact input[type='tel']:hover,
#contact input[type='url']:hover,
#contact textarea:hover {
  -webkit-transition: border-color 0.3s ease-in-out;
  -moz-transition: border-color 0.3s ease-in-out;
  transition: border-color 0.3s ease-in-out;
  border: 1px solid #aaa;
}

#contact textarea {
  height: 100px;
  max-width: 100%;
  resize: none;
}

#contact button[type='submit'] {
  cursor: pointer;
  width: 100%;
  border: none;
  background: #4caf50;
  color: #fff;
  margin: 0 0 5px;
  padding: 10px;
  font-size: 15px;
}

#contact button[type='submit']:hover {
  background: #43a047;
  -webkit-transition: background 0.3s ease-in-out;
  -moz-transition: background 0.3s ease-in-out;
  transition: background-color 0.3s ease-in-out;
}

#contact button[type='submit']:active {
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.5);
}

.copyright {
  text-align: center;
}

#contact input:focus,
#contact textarea:focus {
  outline: 0;
  border: 1px solid #aaa;
}

.main-content > p {
  margin-bottom: 20px;
}

footer {
  width: 100%;
  color: white;
}

footer .container {
  background-color: #646161;
  padding: 0 32px;
  margin-top: auto;
}

.main-img {
  width: 600px;
}

.heading {
  font-size: 14px;
  margin-bottom: 5px;
}

.packages {
  border-bottom: 1px solid black;
  font-weight: bold;
}

.packages-container {
  display: flex;
}

.packages-container > * {
  flex: 1;
}

.price ul li:first-child {
  font-weight: bold;
  margin-top: 20px;
}

.price ul li {
  list-style: none;
}

.price span {
  font-weight: bold;
}

.price ul {
  margin-bottom: 20px;
}

.heading-top {
  margin-top: 20px;
}

.privacy ul {
  margin-left: 20px;
  margin-bottom: 10px;
}

.main-contactus {
  width: 400px;
}

h2 {
  text-align: center;
  margin: 0 0 20px;
}

.form {
  padding: 30px 0;
}

.form-control {
  margin-bottom: 10px;
  padding-bottom: 20px;
  position: relative;
  display: flex;
  justify-content: space-between;
}

.form-control label {
  color: #777;
  display: block;
  margin-bottom: 5px;
}

.form-control input {
  border: 1px solid #ccc;
  border-radius: 4px;
  display: block;
  width: 70%;
  padding: 10px;
  font-size: 14px;
}

.form-control input:focus {
  outline: 0;
  border-color: #777;
}

.form-control.success input {
  border-color: var(--succes-color);
}

.form-control.error input {
  border-color: var(--error-color);
}

.form-control small {
  color: var(--error-color);
  position: absolute;
  bottom: 0;
  left: 0;
  visibility: hidden;
}

.form-control.error small {
  visibility: visible;
}
.form button {
  cursor: pointer;
  background-color: white;
  border: 1px solid #ccc !important;
  border-radius: 4px;
  color: #000;
  display: block;
  padding: 10px;
  font-size: 16px;
  margin-top: 20px;
}

.form button:hover {
  background-color: rgba(0, 0, 0, 0.5);
}

textarea {
  resize: none !important;
  border: 1px solid #ccc;
  border-radius: 4px;
  display: block;
  padding: 10px;
  font-size: 14px;
  width: 70%;
  height: 150px;
}

.main-img-home {
  width: 500px;
  max-width: 1000px;
}

.g-recaptcha {
  display: flex;
  justify-content: flex-end;
}

.button-container {
  width: 70%;
  float: right;
}

html, body{
	width:100%;
}
.mob-logo{
	display:none;
}
.desk-logo{
	display:block;
}
footer{
	background-color: #646161;
	padding: 10px;
}
header{
height: 37px;
}
header nav ul li a{
	padding: 9px 11px 8px 11px;
}
@media only screen and (max-width: 1200px) {
}
@media only screen and (max-width: 992px) {
}
@media only screen and (max-width: 768px) {
	header nav ul li{
		width:100%;
		display:block;
	}
	.nav-menu.active {
    top: 46px;
	bottom:auto;
    background-color: #646161;
	z-index: 100;
	}
	.nav-menu li{
		background-color: #646161;
		margin-bottom:0;
		margin-left:0;
	}
	header nav ul li a{
		margin-left: 0;
    display: block;
	padding:10px 15px;
	}
	.main-contactus {
    width: 100%;
	padding-top:30px;
}
.main-img {
    width: 100%;
}
.main .container{
	padding: 15px;
	gap: 0;
}
.header-logo .container{
	    display: block;
		gap: 0;
		text-align: center;
}
body.modal-open {
  
  position: fixed;
}
.main-img-home {
    width: 100%;
}
.container {
	padding: 15px;
}
.header-logo .container > span{
	display: block;
    width: 100%;
	text-align: center;
}
.mob-logo{
	max-height: 40px;
    float: left;
    padding-top: 5px;
	display:block;
}
.hamburger{
	float: right;
}
header{
	height: 46px;
	display:block;
	padding:0 15px;
	background: #fff;
    border-bottom: 1px solid #ccc;
}
.desk-logo{
	display:none;
}
.main-content h1{
		font-size:28px;
	}
	.packages-container img, .main-content img{
		width:100%;
	}
	.packages-container {
    display: block;
}

}
@media only screen and (max-width: 600px) {
	.main-content h1{
		font-size:24px;
	}
}
@media only screen and (max-width: 480px) {
	.header-logo .container > span{
		font-size: 20px;
	}
	.main-content h1{
		font-size:20px;
	}
}
@media only screen and (max-width: 360px) {
	.header-logo .container > span{
	font-size: 16px;
	}
}
@media only screen and (max-width: 320px) {
	.main-content h1{
		font-size:18px;
	}
}

