
/*------------------------------------------------------------------------------
/ 1. Font Settings
------------------------------------------------------------------------------*/
@import url('https://fonts.googleapis.com/css?family=Oswald:200,300,400,500,600,700');
@import url("https://fonts.googleapis.com/css?family=Playfair+Display|Poppins:300,400,500,600,700,800,900");
body, html{
    margin: 0;
    padding: 0;
}
body{
    line-height: 32px;
    color: #3c3a3a;
    letter-spacing: 0.64px;
    font-size: 16px;
    font-family: 'Oswald', sans-serif;
    font-weight: 400;
    transition: all ease 400ms;
    -webkit-transition: all ease 400ms;
    -moz-transition: all ease 400ms;
}
.three-col.pt-100{ padding-top:50px;    border-top: 1px solid #e7e7e7;  margin-top: 50px;}
/*------------------------------------------------------------------------------
/ 2. Typography Settings
------------------------------------------------------------------------------*/
h1, h2, h3, h4, h5 h6{
    color: #000000;
    font-weight: 400;
    margin: 0 0 15px;
    font-family: 'Oswald', sans-serif;
}
.mt-100{ margin-top:100px; }
a{
    color: #000;
    text-decoration: none;
    transition: all ease 400ms;
    -webkit-transition: all ease 400ms;
    -moz-transition: all ease 400ms;
}
p,ul li{   font-family: "Poppins", sans-serif; font-size: 15px; line-height: 25px;}
a:hover, a:focus{
    text-decoration: none;
    outline: 0;
}
a:focus{
    color: #fff;
}
ul li{
    margin: 0;
    padding: 0;
    list-style: none;
}

/*------------------------------------------------------------------------------
/ 3. Section Title Settings
------------------------------------------------------------------------------*/
.noPadding{
    padding: 0;
}
.noPaddingRight{
    padding-right: 0;
}
.noPaddingLeft{
    padding-right: 0;
}

/*------------------------------------------------------------------------------
/ 4. Button Settings
------------------------------------------------------------------------------*/
.common_btn{
    border: none;
    font-size: 16px;
    font-weight: 400;
    background: #000000;
    color: #fff;
    height: 70px;
    text-transform: uppercase;
    text-align: center;
    padding: 28px 45.5px;
    display: inline-block;
    line-height: .8;
    letter-spacing: 1.6px;
    position: relative;
    outline: none;
    transition: all 0.4s ease-out;
    -moz-transition: all 0.4s ease-out;
    -webkit-transition: all 0.4s ease-out;
    -ms-transition: all 0.4s ease-out;
    -o-transition: all 0.4s ease-out;
}
.common_btn span {
    position: relative;
    z-index: 2;
}
.common_btn:after {
    content: "";
    width: 4px;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
    background: #fff;
    transition: all 0.4s ease-out;
    -moz-transition: all 0.4s ease-out;
    -webkit-transition: all 0.4s ease-out;
    -ms-transition: all 0.4s ease-out;
    -o-transition: all 0.4s ease-out;
}
.common_btn:hover:after{
    width: 100%;
}
.common_btn:hover{
    color: #000;
}
.common_btn.red_bg{
    padding: 28px 40.5px;
}
.common_btn.red_bg:after{
    background: #e62b4a;
}
.common_btn.red_bg:hover:after{
    width: 100%;
}
.common_btn.red_bg:hover{
    color: #fff;
}

/*------------------------------------------------------------------------------
/ 5. Section Settings
------------------------------------------------------------------------------*/
.commonSection{
    padding: 120px 0;
    position: relative;
}
.commonSection .container{
    position: relative;
    z-index: 2;
}
.grays{
    background: #f5f6fa;
}
.sub_title{
    font-size: 12px;
    line-height: .8;
    font-weight: 400;
    color: #818181;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin: 0 0 5px;
}
.sec_title{
    font-size:40px;
    line-height: 60px;
    font-weight: 400;
    color: #000;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 0 0 25px;
}
.red_color{
    color: #e62b4a;
}
.white{
    color: #ffffff;
}
.sec_desc{
    margin: 0 0 54px;
}
.color_aaa{
    color: #aaaaaa;
}
.c_box_item h3{
    font-size: 25px;
    font-weight: 600;
}
.three-col .c_box_item .curcal-icon {
    font-size: 30px;
    width: 80px;
    height: 80px;
    border: #dddddd solid 1px;
    border-radius: 50%;
    padding: 15px;
    display: flex
;
    align-items: center;
    justify-content: center;
}
.three-col .c_box_item .curcal-icon i{ color: #e62b4a; }
.about-pt50{ padding-top:80px; }
.main-slider-one__carousel.owl-theme .owl-dots {
    text-align: center;
    -webkit-tap-highlight-color: transparent;
    position: relative;
    bottom:80px;
}
.main-slider-one__carousel.owl-theme .owl-dots .owl-dot span {
    width: 16px;
    height: 16px;
    
}
.main-slider-one .owl-nav {
    margin: 0 !important;
    display: none;
}



/*-------------- POPUP--------------*/
.popup-img {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  max-width: 53rem;
  transform: translate(-50%, -50%);
  padding: 2em;
  color: rgb(20, 161, 255);
  font-size:10px;
  font-weight: 500;
  background-color: #0c0c0c;
  border-radius: 5px;
  text-align: center;
  z-index: 1000;
  opacity: 0;
  transition: opacity 0.5s;
  z-index: 2222;
 
}

.popup-img.show {
  display: block;
  opacity: 1;
}

.close-btn {
  position: absolute;
  top:5px;
  right: 10px;
  font-size: 50px;
  cursor: pointer;
 color: #ffffff;
}