body { 
	font-size:14px;
    font-family:  'Montserrat', sans-serif;
    overflow: auto;
}
* {
  box-sizing: border-box;
}
*, *:before, *:after {
  box-sizing: border-box;
}
li {
	list-style-type:none;
}
a , a:hover {
	text-decoration:none;
}
a:active, a:hover {
    outline: 0 !important;
}
ul {
	margin:0;
	padding:0;
}
a , button {
	transition: all 0.4s ease-in-out 0s;
	-o-transition: all 0.4s ease-in-out 0s;
	-ms-transition: all 0.4s ease-in-out 0s;
	-moz-transition: all 0.4s ease-in-out 0s;
	-webkit-transition: all 0.4s ease-in-out 0s;
}
.req-class::after {
    position: absolute;
    content: "*";
    left: 0;
    top: -3px;
    color: red;
    font-size: 17px;
}
.relative-class {
    position: relative;
}
textarea {
    resize:vertical;
    min-height: 100px;
}
#my_div {
    padding: 0 100px;
}
.main-ttl {
    text-align: center;
    font-size: 30px;
    font-family: 'Wide Latin';
    text-transform: uppercase;
    margin: 40px 0;
    position: relative;
}
.main-ttl span {
    position: absolute;
    left: 220px;
    top: -34px;
    content: "";
}
.form-sec, .details-sec {
    width: 50%;
    display: inline-block;
}
.main-sec {
    padding: 0 100px 30px;
}
.form-sec label.req-class {
    width: 50%;
    display: block;
    font-size: 16px;
    padding: 0 0 0 12px;
}
.form-sec .form-control {
    height: 40px;
    margin: 10px 0 24px;
    font-size: 14px;
    border: 1px solid #ccc;
    padding: 0 5px;
    width: 100%;
    border-radius: 5px;
    font-family: 'Montserrat', sans-serif;
    background-color: #ccc;
}
.sub-desc a {
    color: #333;
}
.sub-desc a:hover {
    color: #999;
}
.form-sec form , .details-sec {
    padding: 0 20px 20px;
    border: 1px solid #ddd;
}
.btn-sub {
    border: 2px solid #333;
    padding: 10px 15px;
    font-size: 17px;
    text-transform: uppercase;
    color: #333;
    background-color: transparent;
    font-weight: bold;
    cursor: pointer;
}
.btn-sub:hover {
    background-color: #333;
    color: #fff;
}
.form-sec {
    width: 75%;
    display: inline-block;
    margin: 0 10px;
    vertical-align: top;
    background-color: #ddd;
}
.details-sec {
    width: 21%;
    display: inline-block;
    margin: 0 10px;
    vertical-align: top;
    height: 472px;
    background-color: #ddd;
}
.sub-ttl {
    font-size: 16px;
    margin: 40px 0 0;
    font-weight: bold;
}
.width50 {
    width: 49%;
    display: inline-block;
}
.main-ttl img {
    width: 100px;
    height: 100px;
}
/*.globe {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    margin:auto;
    width: 270px;
    height: 270px;
    border-radius: 50%;
    background-image: url(../images/earthmap.jpg);
    box-shadow: -20px -20px 50px 2px #000 inset , 0 0 20px 2px #000;
    /*animation: spin 15s linear alternate;
    animation-iteration-count: infinite; */

    /*-webkit-animation-name: spin; 
    -webkit-animation-duration: 10s; 
    -webkit-animation-iteration-count: infinite; -
    -webkit-animation-timing-function: linear;
    -moz-animation-name: spin; 
    -moz-animation-duration: 10s; 
    -moz-animation-iteration-count: infinite;
    -moz-animation-timing-function: linear;
}
@keyframes spin {
    100%{background-position: 100%;}
}*/


#earth {
  position: absolute;
  width: 300px;
  height: 300px;
  margin: auto;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: url(../images/earthmap.jpg) 0 0 repeat;
  border-radius: 50%;
  background-size: 630px;
  animation: rotate 10s linear infinite;
  transition: transform 200ms linear;
  transform-style: preserve-3d;
  box-shadow: -20px -20px 50px 2px #000 inset , 0 0 20px 2px #000;
  color: #000;
}

#earth:after {
  content: "";
  position: absolute;
  top: 0%;
  left: 0%;
  width: 100%;
  height: 100%;
  border-radius: 50%;
}

#earth:before {
  content: "";
  position: absolute;
  border-radius: 50%;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0.2;
}

@keyframes rotate {
  0% {background-position: 0 0;}
  100% {background-position: 630px 0;}
}
.globe p {
    font-size: 20px;
    position: absolute;
    bottom: -50px;
    content: "";
    margin: 0 0 0 -20%;
    width: 40%;
    left: 50%;
}
.hide{
    display:none;
}
.show{
    display:block;
}
.btn-class {
    text-align: center;
}



/*======================================responsive==========================================*/
/*==========================992 to 1199===========================*/
@media (min-width:992px) and (max-width:1199px) {
#my_div {
  padding: 0 30px;
}
.details-sec {
  width: 25%;
}
.form-sec {
  width: 70%;
}
.main-ttl {
  margin: 40px auto;
  width: 55%;
}
.main-ttl span {
  left: -90px;
}
}
/*==========================768 to 991===========================*/
@media (min-width:768px) and (max-width:991px) {
#my_div {
  padding: 0 15px;
}
.details-sec {
  width: 25%;
}
.form-sec {
  width: 68%;
}
.main-ttl {
  margin: 40px 0 40px 120px;
}
.main-ttl span {
  left: -60px;
}
.form-sec label.req-class {
  font-size: 14px;
}
.form-sec form, .details-sec {
  padding: 0 10px 20px;
  border: 1px solid #ddd;
}
.sub-desc {
  font-size: 12px;
}
}
/*==========================max-width: 767px=====================*/
@media (max-width: 767px) {
#my_div {
  padding: 0 15px;
}
.details-sec {
  width: 25%;
}
.form-sec {
  width: 68%;
}
.main-ttl {
  margin: 40px 0 40px 120px;
}
.main-ttl span {
  left: -60px;
}
.form-sec label.req-class {
  font-size: 14px;
}
.form-sec form, .details-sec {
  padding: 0 10px 20px;
  border: 1px solid #ddd;
}
.sub-desc {
  font-size: 12px;
}
}
/*--------------------------max width 480px-----------------------*/
@media (max-width:480px) {
.main-ttl span {
  left: -65px;
  top: -23px;
}
.main-ttl img {
  width: 70px;
  height: 70px;
}
.main-ttl {
  font-size: 20px;
  margin: 40px 0 40px 100px;
}
.form-sec {
  width: 100%;
  margin: 0;
}
#earth {
  width: 240px;
  height: 240px;
}
.form-sec form, .details-sec {
  width: 100%;
  margin: 10px 0 0;
}
.sub-ttl {
  font-size: 16px;
}
.details-sec {
  height: 360px;
}
}
/*===========================max width 360px===========================*/
@media (max-width:360px) {
.main-ttl img {
  width: 70px;
  height: 70px;
}
.main-ttl {
  font-size: 20px;
  margin: 40px 0 40px 60px;
}
.main-ttl span {
  left: -36px;
  top: -9px;
}
.form-sec {
  width: 100%;
  margin: 0;
}
#earth {
  width: 240px;
  height: 240px;
}
.form-sec form, .details-sec {
  width: 100%;
  margin: 10px 0 0;
}
.sub-ttl {
  font-size: 16px;
  margin: 20px 0 0;
}
.details-sec {
  height: 330px;
}
.form-sec label.req-class {
  width: 80%;
}
.form-sec .form-control {
  font-size: 11px;
}
#earth {
  width: 170px;
  height: 170px;
}
.globe p {
  margin: 0 0 0 -35%;
  width: 70%;
}
}
/*===========================max width 320px===========================*/
@media (max-width:320px) {
.main-ttl img {
  width: 70px;
  height: 70px;
}
.main-ttl {
  font-size: 20px;
  margin: 40px 0 40px 60px;
}
.main-ttl span {
  left: -36px;
  top: -9px;
}
.form-sec {
  width: 100%;
  margin: 0;
}
#earth {
  width: 170px;
  height: 170px;
}
.globe p {
  margin: 0 0 0 -35%;
  width: 70%;
}
.form-sec form, .details-sec {
  width: 100%;
  margin: 10px 0 0;
}
.sub-ttl {
  font-size: 16px;
  margin: 20px 0 0;
}
.details-sec {
  height: 330px;
}
.form-sec label.req-class {
  width: 80%;
}
.form-sec .form-control {
  font-size: 11px;
}
#my_div {
  padding: 0;
}
}