/*
 Table Of Contents
 1.) Eric Meyer's Reset
 2.) Global Typography
 2.0.1) Font Face
 2.0.2) Global Headings

 5.) Footer Style
 ===============================================*/

/*
 1.) Eric Meyer's Reset
 ----------------------------------------*/
/**
 * Eric Meyer's Reset CSS v2.0 (http://meyerweb.com/eric/tools/css/reset/)
 * http://cssreset.com
 */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}


ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* sprite */
[class^="icon-"],
[class*="icon-"] {
  background-image: url(../images/sprite.png);
  background-position: 0 0;
  background-repeat: no-repeat;
  display: inline-block;
  height: 22px;
  line-height: 14px;
  margin-top: 1px;
  vertical-align: text-top;
  width: 20px;
}

/*
  1.) Global Typography
  ----------------------------------------*/
*,
:before,
:after {
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
}

html {
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  font-size: 100%;
}

body {
  font-size: 14px;
  line-height: 1;
  font-family: 'Open Sans', sans-serif;
  color: #232323;
  /* background: url(../images/body2.jpg) no-repeat center 0;
      opacity: 0.5;  */
  /* font-family: 'Cormorant Garamond', serif; */

}

/*
  2.0.2) Global Headings
  -----------------------------*/
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Poppins', sans-serif;
  color: #161e21;
}

h1 {
  font-size: 48px;
  line-height: 0.875;
  margin: 0 0 0.4375em 0;
}

h2 {
  /* font-size: 32px; */
  font-size: 27px;
  line-height: 1.4;
  margin: 0 0 15px 0;
  color: #232323;
  font-weight: 400;
  padding: 0 58px 34px;
}

h3 {
  font-size: 24px;
  color: #282936;
  line-height: 26px;
  margin: 0 0 10px 0;
  font-weight: 300;
}


/*
  2.0.3) Form Elements
  -----------------------------*/
button,
input,
optgroup,
select,
textarea {
  margin: 0;
  padding: 0;
  font-size: 100%;
  color: inherit;
  background: #828282;
  border: 1px solid #ccc;
  outline: none;

}

input {
  line-height: normal;
}

input:focus,
select:focus,
textarea:focus,
button:focus {
  border: 1px #888 solid;
  outline: 0;
}

input[type="checkbox"],
input[type="radio"] {
  padding: 0;
  border: none;
}

button,
input[type="button"],
input[type="reset"],
input[type="submit"],
input[type="file"],
input[type="text"] {
  -webkit-appearance: none;
  appearance: none;
  line-height: normal;
  overflow: visible;
}

button,
input[type="button"],
input[type="reset"],
input[type="submit"],
input[type="file"],
select {
  cursor: pointer;
}

button[disabled],
input[disabled] {
  cursor: default;
  color: #999;
  border-color: #ccc;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
  padding: 0;
  border: 0;
}

/*
  2.0.4) List Styles
  ---------------------------------*/
ul,
ol,
dl {
  font-size: 100%;
  line-height: 1.5;
}

li,
dt {
  line-height: 1.5em;
}

dl {
  margin: 0 0 1em 0;
}

dd {
  margin: 0 0 1em 0.8em;
}

ul {
  list-style-type: none;
  margin: 0 0 1em 0;
}

ol {
  list-style-type: decimal;
  margin: 0 0 1em 0;
}

ul ul,
ol ul {
  list-style-type: none;
  margin-top: 0;
}

ol ol {
  list-style-type: lower-latin;
  margin-top: 0;
}

/*
  2.0.5) General Text Formatting
  -----------------------------------*/
p {
  font-size: 15px;
  margin-bottom: 10px;
  line-height: 1.5;
  font-weight: 400;
}

blockquote,
cite,
q,
var,
dfn {
  font-style: italic;
}

blockquote {
  background: transparent;
  color: #666666;
}

small {
  /* font-size: 12px; */
  font-size: 85.71429%;
  line-height: 1.75;
}

pre,
code,
kbd,
tt,
samp,
var {
  font-size: 100%;
}

pre {
  font-size: 100%;
  line-height: 1.5;
  margin: 0 0 1.5em 0;
  white-space: pre;
  white-space: pre-wrap;
  word-wrap: break-word;
}

pre,
code {
  color: #880000;
}

kbd,
samp,
var {
  color: #666666;
  font-weight: bold;
}

acronym,
abbr {
  border-bottom: 1px #aaa dotted;
  font-variant: small-caps;
  cursor: help;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/*
  2.0.6) Link style
  -------------------------*/
a {
  color: #ed1c24;
  text-decoration: none;
  display: inline-block;
  outline: none;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;

}

a:hover,
a:focus {
  color: #ed1c24;
  text-decoration: none !important;
}

a:active {
  outline: none;
}

/*
  2.0.7) Table Elements
  --------------------------*/
table {
  width: 100%;
  border-collapse: collapse;
  color: #444444;
  border-top: 1px #ccc solid;
  border-bottom: 1px #ccc solid;
  margin: 0 0 1.35714em 0;
}

caption {
  font-variant: small-caps;
}

th,
td {
  line-height: 1.5em;
  vertical-align: top;
  padding: 0.71429em 0.5em;
}

th *:first-child,
td *:first-child {
  margin-top: 0;
}

thead th {
  text-align: left;
  color: #000;
  border-bottom: 2px #000 solid;
}

tbody th {
  text-align: left;
}

tbody td {
  text-align: left;
}

/*
  2.0.8) Button Styles
  -------------------------*/



body,
html {
  position: relative;
  /* height: 100%; */
}


.wrapper {
  position: relative;
  background: #fff;
  border: 20px solid #6e787a;

}

.content {
  display: flex;
}

.coming_img {
  width: 45.3%;
  position: relative;
  display: flex;
}

.left-bg {
  object-fit: cover;
}

.coming_content {
  margin: 0 auto;
  color: white;
  width: 54.7%;
  padding: 29px 29px 184px 65px;
  position: relative;
  overflow: hidden;
  background: url(../images/building.jpg) center bottom no-repeat;
  z-index: 2;
}

.coming_content h1 {
  font-size: 58px;
  margin-top: 14px;
  color: #0f3357;
  font-weight: 800;
  letter-spacing: -1px;
   text-align: center;
}

.coming_content .separator_container {
  width: 100%;
  display: block;
  text-align: center;
  position: relative;
  margin: 12px 0;
}

.coming_content .separator_container:before,
.coming_content .separator_container:after {
  display: table;
  content: "";
}

.coming_content .separator_container:after {
  clear: both;
}

.coming_content .separator {
  color: white;
  margin: 0 auto 1em;
  width: 11em;
}

.coming_content .line_separator svg {
  width: 30px;
  height: 20px;
}

.coming_content .line_separator:before,
.coming_content .line_separator:after {
  display: block;
  width: 40%;
  content: " ";
  margin-top: 14px;
  border: 1px solid white;
}

.coming_content .line_separator:before {
  float: left;
}

.coming_content .line_separator:after {
  float: right;
}

h2 span {
  font-style: italic;
  color: #ff7e39;
}



/* countdown  */


.image {
  flex: 1 1 400px;
}

.image img {
  width: 100%;
}

.content .title {
  font-size: 45px;
  text-transform: uppercase;
  color: #2980b9;
}

p {
  color: #666;
  padding: 5px 0;
}

.count-down {
  display: flex;
  padding: 29px 9px 0;
  width: 100%;
  margin: 0 auto;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  justify-content: center;
}

.count-down .box {
  text-align: center;
  min-width: 124px;
  min-height: 124px;
  border-radius: 50%;
  margin: 0 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: relative;
  z-index: 2;
}

.count-down .box::before,
.count-down .box::after {
  content: '';
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #fff;
  position: absolute;
  z-index: -1;
}

.count-down .box::before {
  background: red;
  background-image: linear-gradient(to right, #063968, #063869);
  bottom: 3px;
  right: -2px;
}

.count-down .box-b.box::before {
  top: 3px;
  left: -2px;
  right: auto;
  bottom: auto;
}

.count-down .box h3 {
  font-size: 50px;
  color: #000000;
  font-weight: 600;
  line-height: 1;
  margin: 0;
}

.count-down .box span {
  color: #000000;
  font-size: 14px;
  font-family: 'Poppins', sans-serif;
}

.btn {
  display: inline-block;
  padding: 8px 50px;
  margin: 10px 0;
  font-size: 17px;
  background: #2980b9;
  color: #828282;
  transition: 0.2s ease-out;
}

.top-block {
  padding-left: 10px;
  margin-bottom: 54px;
}

.top-block span {
  display: block;
  margin-top: 27px;
  letter-spacing: 2px;
  font-size: 16px;
  color: #666;
   text-align: center;
}

.top-block p {
  display: block;
  margin-top: 24px;
  font-size: 16px;
  font-family: 'Poppins', sans-serif;
  text-align: center;
  letter-spacing: -0.7px;
  line-height: 1.2;
}

.top-img {
  margin-top: 10px;
}

h2 {
  color: #828282;
}

.social-block {
  margin-left: auto;
}

.form-box span {
  font-size: 18px;
  display: block;
  margin-bottom: 26px;
  font-family: 'Poppins', sans-serif;
  color: #000;
}

.social-block div a {
 opacity: 1;
  margin: 0 3px;
}

.social-block div a:hover {
  
   opacity: 0.7;
}

.social-block img {
  width: 37px;
}

.link-text {
  font-size: 12px;
}

.link-text a {
  color: #ff7e39;
}

.input-group {
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.form-box {
  padding-left: 12px;
  position: relative;
}

.input-group .form-control {
  margin-right: 15px;
  border: none;
  height: 52px;
  background-color: #efefef;
  font-size: 15px;
  color: #000;
  padding: 10px 20px;
  border-radius: 25px;
  width: 67%;
}

.input-group .input-button {
  cursor: pointer;
  display: inline-block;
  color: #fff;
  border: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  border: none;
  border-radius: 45px;
  background-color: #063869;
  font-size: 16px;
  padding: 9px 35px;
  min-width: 159px;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  font-family: 'Poppins', sans-serif;
}

.input-group .input-button:hover {
  background-color: #0a2846;
}

.contact {
  display: flex;
  width: 100%;
  padding-top: 10px;
  padding-left: 12px;
  text-align: left;
}

.contact-box {
  display: flex;
  /* width: 30%; */
}

.contact-icon {
  flex: none;
  margin-right: 14px;
}

.contact-text strong {
  display: block;
  font-size: 16px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  margin-bottom: 3px;
  color: #063869;
}

.contact-text a,
.contact-text p {
  display: block;
  font-size: 15px;
  color: #000;
  padding: 0;
  margin: 0;
  text-align: left;
}
.contact-text a:hover {
    color: #0a2846;
}
/* .contact-box-first {
  width: 26%;
} */

/* .contact-box-second {
  margin-right: 8%;
} */

.top-row {
  display: flex;
}

.bottom-row {
  display: flex;
  width: 100%;
  padding-right: 52px;
  margin-top: 14px;
}

.bottom-row img {
  margin-left: auto;
  transform: rotate(180deg);
}

.logo {
  position: absolute;
  top: 33px;
  left: 35px;
  width: 210px;
}

.round-box {
  width: 52px;
  height: 52px;
  border: 14px solid #6e787a;
  position: absolute;
  bottom: -118px;
  right: 107px;
  border-radius: 50%;
}

.line-box {
  width: 67px;
  height: 294px;
  position: absolute;
  top: -3%;
  right: -26px;
  border-radius: 50%;
  display: flex;
  align-items: baseline;
  transform: rotate(-45deg);
  transform-origin: right bottom;
  z-index: -1;
}

.line-box::after,
.line-box::before {
  content: '';
  height: 31%;
  width: 12px;
  background: #6e787a;
}

.line-box::before {
  margin-right: 44px;
  height: 100%;


}

@media (max-width: 1700px) {
  /* .contact-box {
    width: 40%;
  }

  .contact-box-first {
    width: 172px;
  }

  .contact-box-second {
    margin-right: 0;
  } */

  .contact-text a,
  .contact-text p {
    font-size: 14px;
  }

  .coming_content {
    padding-left: 40px;
  }

  .logo {
    width: 158px;
  }

  .count-down .box {
    min-width: 109px;
    min-height: 109px;
  }

  .count-down .box h3 {
    font-size: 40px;
  }

}
@media (min-width: 1500px) {
  .contact {
    justify-content: center;
  }
.contact-box {
    padding: 0 45px;
    min-width: 221px;
}
}
@media (max-width: 1400px) {
  .coming_content {
    padding-left: 30px;
  }

  .count-down .box {
    min-width: 109px;
    min-height: 109px;
  }

  .count-down .box h3 {
    font-size: 40px;
  }

  .coming_content {
    width: 68.7%;
  }

  .count-down .box {
    min-width: 80px;
    min-height: 80px;
  }

  .count-down .box h3 {
    font-size: 30px;
  }
  .contact-box {
    padding: 0 10px;
   
}
}
@media (min-width: 1240px) {
  .contact {
    justify-content: center;
  }
.contact-box {
 
    min-width: 221px;
}
}
@media (max-width: 1240px) {
  .contact {
    flex-wrap: wrap;
    align-items: center;
  }
 .contact-box{
  padding-right: 20px;
 }
  .contact-box-third {
    /* flex: 0 0 100%; */
    /* margin-top: 25px; */
  }
}

@media (max-width: 1199px) {
  .contact {
    flex-wrap: wrap;
    flex-direction: column;
   
  }

  .coming_content {
    width: 53.7%;
  }

  .contact-box {
    margin: 0 0 20px;

  }

  .line-box {
    opacity: 0.5;
  }
  .contact-box{
    width: 100%;
  }
}

@media (max-width: 991px) {
  .content {
    flex-direction: column;
  }

  .coming_img,
  .coming_content {
    width: 100%;
  }

  .coming_content {
    padding-bottom: 124px;
    padding: 24px 32px 124px
  }

  .left-bg {
    height: 442px;
    width: 100%;
    object-position: top;
  }
}
@media (min-width:992px) {
  .coming_content,.left-bg{
        height:calc(100vh - 40px);
  }
  .coming_content{
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 14%;
  }
  .left-bg{
    
    width: 100%;
  }
  .top-row{
        position: absolute;
    top: 0;
    width: 100%;
    left: 0;
    padding: 29px;
  }
}
@media (max-width: 767px) {
  .wrapper {
    border: none;
  }

  .coming_content h1 {
    font-size: 2.625em;
  }

  .logo {
    top: 15px;
    left: 15px;
    width: 101px;
  }

  .count-down .box h3 {
    font-size: 29px;
  }

  .top-img {
    margin-top: 0;
  }

  .count-down .box span {
    font-size: 15px;
  }

  .count-down .box {
    margin: 10px;
  }

  .coming_content {
    padding: 15px 15px 100px;
  }

  .top-img img {
    width: 100px;
  }

  .social-block img {
    width: 25px;
  }


  .title {
    font-size: 30px;
  }

  p {
    font-size: 15px;
  }

  .count-down {
    gap: 5px;
    flex-wrap: wrap;
    max-width: 308px;
    left: 50%;
    top: 55%;
    transform: translate(-50%,-50%);
  }
.top-block br{
  display: none;
}
.left-bg {
    height: 387px;
}
  .count-down .box h3 {
    font-size: 25px;
  }

  .count-down .box span {
    font-size: 15px;
  }

  .coming_content h1 {
    font-size: 3em;
  }

  .top-block p {
    font-size: 14px;
    line-height: 1.5;
    letter-spacing: 0;
  }

  .top-block,
  .form-box {
    padding-left: 0;
  }

  .input-group {
    flex-direction: column;
  }

  .input-group .form-control {
    width: 100%;
    margin-bottom: 15px;
  }

  .contact-box {
    width: 100%;
    max-width: 400px;
  }

  .top-block {
    margin-bottom: 10px;
  }

  .form-box span {
    font-size: 16px;
    margin-bottom: 18px;
  }

  .contact {
    padding-top: 44px;
  }

  .line-box {
    opacity: 0.1;
  }

  .bottom-row {
    display: none;
  }

  .round-box {
    right: 0;
    width: 42px;
    height: 42px;
    border: 8px solid #6e787a;
  }

  .social-block {
    flex-direction: column-reverse;
    gap: 15px;

  }

  .link-text {
    font-size: 12px;
  }

  h2 {
    padding-left: 0;
    padding-right: 0;
    font-size: 24px;
  }
}

