@import url('https://fonts.googleapis.com/css2?family=PT+Serif:ital,wght@0,400;0,700;1,400;1,700&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Courgette&family=Exile&family=Ovo&display=swap');

:root {
    --clr1:rgb(21,12,104);
    --clr2:rgb(236,68,90);
    --clr3:#fff;
    --clr4:#000;
    --clr5:lightgray;
    --clr6: yellow;
      --clr1: #2E8B57; /* Sea Green; GeeksforGeeks uses a similar green shade */
  --clr2: #3CB371; /* A complementary shade for hovers */
  --clr3: #fff;
  --clr4: #000;
  --clr5: lightgray;
  --clr6: yellow;
  
   }
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    text-transform: capitalize;
    font-family: 'Ovo', serif;
    border: none;
}
html {
    font-size: 56.5%;
    /* font-size: 10px;
    font-size: 1rem; */
    overflow-x: hidden;
    scroll-behaviour:smooth;
}
html::-webkit-scrollbar-thumb {
    background: var(--clr1);
}

       /* header section */

.head {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--clr1);
    padding: 2em 9%;
    display: flex;
    align-items: center;
    justify-content: space-between;
} 
.head .navbar {
    font-size: 1.8rem;
    justify-content: space-between;
    font-weight: 500;
}
.head .navbar a {
    padding-left:1.5rem;
    color: var(--clr3);
}

#menu-bar {
    display: none;
    color: var(--clr3);
}      
.head .navbar a:hover {
    color: rgb(236,68,90);
   border: 1px solid white;
}


#section-wrapper{
    
    width: 100%;
    padding: 30px;
   
   
}
.box-wrapper{
    position: relative;
    display: table;
    width:1000px;
    margin:auto;
    margin-top:35px;
    border-radius: 30px;
}
.info-wrap{
    width:35%;
    height: 721px;
    padding: 40px;
    float: left;
    display: block;
    border-radius: 30px 0px 0px 30px;
    background-color: var(--clr1);
    /* background: linear-gradient(144deg, rgba(126,39,156,1) 0%, rgba(49,39,157,1) 49%); */
    color: #fff;
}
.info-title{
    text-align: left;
    font-size: 28px;
    letter-spacing: 0.5px;
}
.info-sub-title{
    font-size: 18px;
    font-weight: 300;
    margin-top: 17px;
    letter-spacing: 0.5px;
    line-height: 26px;
}
.info-details {
    list-style: none;
    margin: 60px 0px;
}
.info-details li {
    margin-top: 25px;
    font-size: 18px;
    color: #fff;
}
.info-details li i {
    background: #F44770;
    padding: 12px;
    border-radius: 50%;
    margin-right: 5px;
}
.info-details li a {
    color: #fff;
    text-decoration: none;
}
.info-details li a:hover {
    color: #F44770;
}
.social-icons {
    list-style: none;
    text-align: center;
    margin: 20px 0px;
}
.social-icons li {
    display: inline-block;
}
.social-icons li i {
    background: #F44770;
    color: #fff;
    padding: 15px;
    font-size: 20px;
    border-radius: 22%;
    margin: 0px 5px;
    cursor: pointer;
    transition: all .5s;
}
.social-icons li i:hover {
    background: #fff;
    color: #000000;
}
.form-wrap{
    width:65%;
    float: right;
    padding:40px 25px 35px 25px;
    border-radius: 0px 30px 30px 0px;
    background: #ecf0f3;
}
.form-title{
    text-align: left;
    margin-left: 23px;
    font-size: 28px;
    letter-spacing: 0.5px;
}
.form-fields{
    display: table;
    width: 100%;
    padding: 15px 5px 5px 5px;
}
.form-fields input,
.form-fields textarea{
    border: none;
    outline:none;
    background: none;
    font-size: 18px;
    color:#555;
    padding: 20px 10px 20px 5px;
    width:100%
}
.form-fields textarea{
    height: 150px;
    resize: none;
}
.form-group{
    width: 46%;
    float: left;
    padding: 0px 30px;
    margin: 14px 12px;
    border-radius: 25px;
    box-shadow: inset 8px 8px 8px #cbced1, inset -8px -8px 8px #ffffff;
}
.form-fields .form-group:last-child {
    width: 96%;
}
.submit-button{
    width: 96%;
    height: 60px;
    margin: 0px 12px;
    border-radius: 30px;
    font-size: 20px;;
    font-weight: 700;
    outline: none;
    border:none;
    cursor: pointer;
    color:#fff;
    text-align: center;
    background: #2E8B57;
    box-shadow: 3px 3px 8px #b1b1b1, -3px -3px 8px #ffffff;
    transition: .5s;
}
.submit-button:hover{
    background:   #F44770;
}
/* Responsive css */
@media only screen and (max-width: 767px) {
    .box-wrapper{
        width: 100%;
    }
    .info-wrap,
    .form-wrap{
        width: 100%;
        height: inherit;
        float: none;  
    }
    .info-wrap{
        border-radius: 30px 30px 0px 0px;
    }
    .form-wrap{
        border-radius: 0px 0px 30px 30px;
    }
    .form-group{
        width: 100%;
        float: none;
        margin: 25px 0px;
    }
    .form-fields .form-group:last-child, 
    .submit-button{
        width: 100%;
    }
    .submit-button{
        margin: 10px 0px;
    }
   
}

@media (max-width: 767px) {
.head .navbar {
    position: absolute;
    top: 70px;
    
     right: 0; 
    background: var(--clr1);
    flex-direction: column;
    width: 100%;
    flex-direction: column;
    
    display: none;
}
.head .navbar .active {
    max-height: 500px;
}

.head .navbar a {
    padding: 1rem;
    border-top: 1px solid var(--clr3);
    /* text-align: center; */
    left: 5rem;
}

#menu-bar {
    display: block;
    scale: 2;
}
.map {
    width: 790px;
    height: 300px;
}
}

/* 
           map */


           .map {
          width: 1213px;
          height: 600px;
           }