@charset "utf-8";

/* CSS Document */

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,
main {
    display: block;
}

body {
    line-height: 1;
}

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;
}

a {
    text-decoration: none;
}

.f-right {
    float: right !important;
}

.ptb40 {
    padding: 40px 0px;
}


/* Arrow css */

i {
    border: solid black;
    border-width: 0 2px 2px 0;
    display: inline-block;
    padding: 3px;
}

.right {
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
}

.left {
    transform: rotate(135deg);
    -webkit-transform: rotate(135deg);
}

.up {
    transform: rotate(-135deg);
    -webkit-transform: rotate(-135deg);
}

.down {
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
}


/* Font Face */

@font-face {
    font-family: 'nafeesnastaleeqregular1';
    src: url('../fonts/nafeesnastaleeqregular1.eot');
    src: url('../fonts/nafeesnastaleeqregular1.eot?#iefix') format('embedded-opentype'), url('../fonts/nafeesnastaleeqregular1.woff') format('woff'), url('../fonts/nafeesnastaleeqregular1.ttf') format('truetype'), url('../fonts/nafeesnastaleeqregular1.svg#GOTHIC') format('svg');
    font-weight: normal;
    font-style: normal;
}

body {
    font-family: 'nafeesnastaleeqregular1';
    background: #f9f9f9;
    padding: 0px;
    margin: 0px;
}

header {
    width: 100%;
    /* height: 125px; */
    padding-bottom: 8px;
}

.container {
    width: 94%;
    margin: 0px auto;
    display: block;
    position: relative;
}

.darood {
    width: 100%;
    float: left;
    text-align: center;
    background: rgb(38, 191, 30);
    /* Old browsers */
    background: -moz-linear-gradient(top, rgba(38, 191, 30, 1) 0%, rgba(75, 208, 68, 1) 100%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(top, rgba(38, 191, 30, 1) 0%, rgba(75, 208, 68, 1) 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, rgba(38, 191, 30, 1) 0%, rgba(75, 208, 68, 1) 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid: DXImageTransform.Microsoft.gradient( startColorstr='#26bf1e', endColorstr='#4bd044', GradientType=0);
    /* IE6-9 */
}

.darood img {
    margin: 3px 0px;
}

.logo-nav {
    width: 100%;
    float: left;
    padding: 10px 0;
    background: #000;
}

.logo {
    float: right;
}


/*===============================
=            nav css            =
===============================*/

.toggle,
[id^=drop] {
    display: none;
}


/* Giving a background-color to the nav container. */

nav {
    float: left;
    margin: 10px 0px;
    padding: 0;
}

#logo {
    display: block;
    padding: 0 30px;
    float: left;
    font-size: 20px;
    line-height: 60px;
}


/* Since we'll have the "ul li" "float:left"
 * we need to add a clear after the container. */

nav:after {
    content: "";
    display: table;
    clear: both;
}


/* Removing padding, margin and "list-style" from the "ul",
 * and adding "position:reltive" */

nav ul {
    float: right;
    padding: 0;
    margin: 0;
    list-style: none;
    position: relative;
}


/* Positioning the navigation items inline */

nav ul li {
    margin: 0px;
    display: inline-block;
    float: right;
    position: relative;
}


/* Styling the links */

nav a {
    display: block;
    padding: 30px 20px;
    color: #FFF;
    font-size: 22px;
    text-align: right;
    text-decoration: none;
}

nav ul li ul li:hover {
    background: #000000;
}


/* Background color change on Hover */

nav a:hover {
    background-color: #000000;
}


/* Hide Dropdowns by Default
 * and giving it a position of absolute */

nav ul ul {
    display: none;
    position: absolute;
    /* has to be the same number as the "line-height" of "nav a" */
    top: 82px;
    right: 0px;
    z-index: 999;
}


/* Display Dropdowns on Hover */

nav ul li:hover > ul {
    display: inherit;
}


/* Fisrt Tier Dropdown */

nav ul ul li {
    width: 420px;
    float: none;
    display: list-item;
    position: relative;
    background: #20d40c;
}
nav ul ul li a {
    font-size: 20px;
    padding: 20px;
}


/* Second, Third and more Tiers 
 * We move the 2nd and 3rd etc tier dropdowns to the left
 * by the amount of the width of the first tier.
*/

nav ul ul ul li {
    position: relative;
    top: -43px;
    /* has to be the same number as the "width" of "nav ul ul li" */
    right: 170px;
}


/* Change ' +' in order to change the Dropdown symbol */

/* li > a:after {
    content: ' +';
} */

li > a:only-child:after {
    content: '';
}


/* Media Queries
--------------------------------------------- */

@media all and (max-width: 768px) {
    #logo {
        display: block;
        padding: 0;
        width: 100%;
        text-align: center;
        float: none;
    }
    nav {
        margin: 0;
    }
    /* Hide the navigation menu by default */
    /* Also hide the  */
    .toggle + a,
    .menu {
        display: none;
    }
    /* Stylinf the toggle lable */
    .toggle {
        display: block;
        background-color: #254441;
        padding: 14px 20px;
        color: #FFF;
        font-size: 17px;
        text-decoration: none;
        border: none;
    }
    .toggle:hover {
        background-color: #000000;
    }
    /* Display Dropdown when clicked on Parent Lable */
    [id^=drop]:checked + ul {
        display: block;
    }
    /* Change menu item's width to 100% */
    nav ul li {
        display: block;
        width: 100%;
    }
    nav ul ul .toggle,
    nav ul ul a {
        padding: 0 40px;
    }
    nav ul ul ul a {
        padding: 0 80px;
    }
    nav a:hover,
    nav ul ul ul a {
        background-color: #000000;
    }
    nav ul li ul li .toggle,
    nav ul ul a,
    nav ul ul ul a {
        padding: 14px 20px;
        color: #FFF;
        font-size: 17px;
    }
    nav ul li ul li .toggle,
    nav ul ul a {
        background-color: #212121;
    }
    /* Hide Dropdowns by Default */
    nav ul ul {
        float: none;
        position: static;
        color: #ffffff;
        /* has to be the same number as the "line-height" of "nav a" */
    }
    /* Hide menus on hover */
    nav ul ul li:hover > ul,
    nav ul li:hover > ul {
        display: none;
    }
    /* Fisrt Tier Dropdown */
    nav ul ul li {
        display: block;
        width: 100%;
    }
    nav ul ul ul li {
        position: static;
        /* has to be the same number as the "width" of "nav ul ul li" */
    }
}

@media all and (max-width: 330px) {
    nav ul li {
        display: block;
        width: 94%;
    }
}


/*=====  End of nav css  ======*/
/*=====
.banner {
    width: 100%;
    float: left;
    min-height: 385px;
    position: relative;
} ======*/
.banner {
    width: 100%;
    float: left;
    min-height: 50vh;
    max-height: 50vh;
    position: relative;
    overflow: hidden;
}

.banner img.banner-bg {
    width: 100%;
    position: absolute;
}

.darbar-img {
    height: 100%;
    position: relative;
    top: 0;
    left: 0;
}


/*==================================
=            slider css            =
==================================*/

.slider {
    float: right;
    height: 200px;
    position: relative;
    text-align: center;
    width: 50%;
    margin: 90px 0px 0px;
}

.arrow {
    background: black;
    border: none;
    border-radius: 10%;
    color: white;
    cursor: pointer;
    display: none;
    opacity: .4;
    padding: 10px;
    position: absolute;
    text-transform: uppercase;
    -webkit-transition: .2s;
    top: 50%;
    transition: .2s;
}

.arrow:hover {
    opacity: .8;
}

.arrow.next {
    right: 2%
}

.arrow.prev {
    left: 2%;
}

.slide {
    background-repeat: no-repeat;
    background-size: cover;
    padding: 0px 0 0;
    position: absolute;
    width: 100%;
}

.slide p, .slide-desc {
    float: left;
    font-size: 24px;
    margin: 40px auto 0;
    width: 100%;
    line-height: 40px;
}

.active {
    display: block;
}

.slide-nav {
    bottom: 30px;
    position: absolute;
    width: 100%;
}

.nav-item {
    background: #979e9b;
    cursor: pointer;
    display: inline-block;
    margin-right: 10px;
    transition: background .4s;
}

.nav-item:last-of-type {
    margin-right: 0;
}

.nav-item:hover {
    transform: scale(1.3);
}

.item-active {
    background: #edc000;
    transform: scale(1.3);
}

.dot {
    border-radius: 50%;
}

.dot,
.square {
    height: 8px;
    width: 8px;
}

.rectangle {
    height: 15px;
    width: 30px;
}

.clear {
    clear: both;
}


/*=====  End of slider css  ======*/

.news-hold {
    width: 100%;
    float: left;
    padding: 25px 0px;
    background: #edc000;
}

.khandan-e-sherm {
    width: 100%;
    float: left;
    padding: 40px 0px;
    background: #fff;
}

aside.khandan {
    width: 33%;
    float: right;
}

aside.khandan ul,
aside.khandan ul li {
    width: 100%;
    float: right;
    text-align: right;
}

aside.khandan ul li a {
    font-size: 20px;
    color: #000;
    line-height: 56px;
    padding: 0px 30px;
    display: block;
    background: #fdf7e0;
}

aside.khandan ul li a:hover,
aside.khandan ul li a.active {
    background: #edc000;
}

.person-info {
    width: 65%;
    float: left;
    text-align: center;
}

.person-info h2 {
    width: 100%;
    float: left;
    font-size: 36px;
    margin: 15px 0px 15px;
}

.person-info p {
    font-size: 20px;
    color: #000;
    line-height: 45px;
    margin-bottom: 20px;
}

.person-info a {
    font-size: 24px;
    padding: 0px 37px;
    color: #000;
    background: #edc000;
    -webkit-border-radius:8px;
    -moz-border-radius:8px;
    border-radius:8px;
}

.home-links {
    width: 100%;
    float: left;
    background: #e4eee3;
}

.s-links {
    width: 33%;
    float: left;
}

.s-links ul,
.s-links ul li {
    width: 100%;
    float: right;
    text-align: right;
    position: relative;
}

.s-links ul {
    padding: 20px 0px;
    background-color: #d8e4d7;
}

.s-links ul li:before {
    content: "\2190";
    position: absolute;
    right: 25px;
    top: 15px;
    font-size: 18px;
    color: #ababab;
}

.s-links ul li a {
    font-size: 22px;
    color: #000;
    line-height: 50px;
    padding: 0px 55px 0px 20px;
    display: block;
    background-color: #d8e4d7;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -ms-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

.s-links ul li a:hover, .s-links ul li a.active {
    padding: 0px 65px 0px 20px;
}

.home-videos {
    width: 100%;
    float: left;
    padding: 40px 0px;
}

.home-videos h2 {
    width: 100%;
    float: right;
    font-size: 30px;
    text-align: right;
    margin-bottom: 20px;
}

.video-box {
    width: 32%;
    float: right;
    margin-left: 2%;
    position: relative;
}

.video-box:nth-child(4n) {
    margin-left: 0;
}

.video-box img {
    width: 100%;
    float: left;
}

.video-box a.play {
    width: 74px;
    height: 56px;
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -28px 0px 0px -37px;
}


/*====================================
=            carousel css            =
====================================*/


#carousel_container {
    width: 96%;
    float: left;
    padding: 2%;
    border: none;
    background: #e5e8c7;
    position: relative;
}

#carousel_inner {
    float: left;
    /* important for inline positioning */
    width: 100%;
    /* important (this width = width of list item(including margin) * items shown */
    overflow: hidden;
    /* important (hide the items outside the div) */
    /* non-important styling bellow */
    background: none;
}

#carousel_ul {
    position: relative;
    left: -165px;
    /* important (this should be negative number of list items width(including margin) */
    list-style-type: none;
    /* removing the default styling for unordered list items */
    margin: 0px;
    padding: 0px;
    width: 9999px;
    /* important */
    /* non-important styling bellow */
    padding-bottom: 10px;
}

#carousel_ul li {
    float: left;
    /* important for inline positioning of the list items */
    width: 130px;
    /* fixed width, important */
    /* just styling bellow*/
    padding: 0px;
    background: none;
    margin-top: 10px;
    margin-bottom: 0px;
    margin-left: 0px;
    margin-right: 47px;
    text-align: center;
}
#carousel_ul li img {
    margin-bottom: 10px;
    float: left;
    width: 100%;
}
#carousel_ul li div {
    width: 200px;
    margin: 0px;
    .margin-bottom: -4px;
    /* IE is making a 4px gap bellow an image inside of an anchor (<a href...>) so this is to fix that*/
    /* styling */
    cursor: pointer;
    cursor: hand;
    border: 0px;
}

#carousel_ul li a {
    width: 32px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 12px;
    color: #004276;
    font-weight: 300;
    text-align: center;
    text-decoration: none;
    /* float: left; */
    display: inline-block;
}
#carousel_ul li a img {
    margin-bottom: 0px;
}

#left_scroll,
#right_scroll {
    /* float: left; */
    /* height: 104px; */
    /* width: 55px; */
    background: none;
    position: absolute;
    top: -30px;
    left: 3px;
}
#right_scroll {
    top: -30px;
    left: 10px;
}
#left_scroll i, #right_scroll i {
    cursor: pointer;
}



/*=====  End of carousel css  ======*/

.home-mahenama {
    width: 100%;
    float: left;
    padding: 40px 0px 20px;
}

.home-mahenama h2 {
    width: 100%;
    float: right;
    font-size: 30px;
    text-align: right;
    margin-bottom: 20px;
}
.mahnama-search {
    width: 60%;
    min-height: 124px;
    float: right;
    text-align: center;
    padding: 5% 10%;
    background: #fff; 
}
.mahnama-search p {
    width: 100%;
    float: left;
    font-size: 24px;
    margin-bottom: 20px;
}
.mahnama-search .styled-select {
    width: 46%;
    float: right;
    margin: 0 2%; 
}



.select-hold {
    width: 100%;
    float: left;
    margin-bottom: 30px;
}
/* The CSS */
select {
    width: 46%;
    padding:2%;
    margin: 0;
    -webkit-border-radius:8px;
    -moz-border-radius:8px;
    border-radius:8px;
    background: #f5f5f5;
    color:#888;
    border:none;
    outline:none;
    display: inline-block;
    -webkit-appearance:none;
    -moz-appearance:none;
    appearance:none;
    cursor:pointer;
    direction: rtl;
}

/* Targetting Webkit browsers only. FF will show the dropdown arrow with so much padding. */
@media screen and (-webkit-min-device-pixel-ratio:0) {
    select {padding-right:18px}
}

label.st-box {position:relative; margin: 2%; }
label.st-box:after {
    content:'<>';
    font:15px "Consolas", monospace;
    color:#aaa;
    -webkit-transform:rotate(90deg);
    -moz-transform:rotate(90deg);
    -ms-transform:rotate(90deg);
    transform:rotate(90deg);
    left:12px; top:1px;
    padding:0 0 2px;
    /* border-top:1px solid #ddd; */
    position:absolute;
    pointer-events:none;
}
label.st-box:before {
    content:'';
    right:6px; top:0px;
    width:20px; height:20px;
    /* background:#f8f8f8; */
    position:absolute;
    pointer-events:none;
    display:block;
}
.bajiye {
    color: #000;
    font-size: 20px;
    padding: 0px 40px;
    background: #ffcf00;
    -webkit-border-radius:8px;
    -moz-border-radius:8px;
    border-radius:8px;
}





.mahanama-img {
    width: 14%;
    min-height: 183px;
    float: left;
    padding: 3%;
    text-align: center;
    background: #f6fdf5; 
}

/*==================================
=            footer css            =
==================================*/

footer {
    width: 100%;
    padding: 250px 0px 50px;
    margin-top: 20px;
    float: left;
    color: #fff;
    text-align: center;
    background-image: url(../images/footer-bg.png);
    background-size: 100% auto;
}
footer ul {
    width: 59.6%;
    margin: 0px auto 20px; 
}
footer ul li {
    float: right;
    padding: 0px 20px;
    border-right: 1px solid #181818;
}
footer ul li::first-child {
    border-right: none;
}
footer ul li a {
    font-size: 20px;
    color: #fff;
}
footer p {
    width: 100%;
    float: right;
    margin-top: 20px;
    color: #575454;
}

/*=====  End of footer css  ======*/

.inner-banner {
    width: 100%;
    float: left;
    position: relative;
    margin-bottom: 20px;
}
.inner-banner img {
    width: 100%;
    float: left;
}
.inner-banner h2 {
    font-size: 30px;
    position: absolute;
    width: 92%;
    right: 4%;
    top: 45%;
    text-align: right;
}

#inner-page {
    width: 100%;
    float: left;
    margin-top: 30px;
}
.left-side {
    width: 25%;
    float: right;
    padding-top: 155px;
    background-image: url(../images/side-bar-top.png);
    background-size: 100% auto;
    background-repeat: no-repeat;
}
.left-side h2 {
    width: 90%;
    font-size: 18px;
    padding: 5% 5%;
    text-align: right;
    background-color: #edc000; 
}

/*==========================================
=            Left Accordion CSS            =
==========================================*/

.left-menu-accor {
    width: 100%;
    float: left;
    text-align: right;
    margin-bottom: 30px;
    padding: 7px 0px;
    background: #fff;
    border: 1px solid #f9f9f9;
}

.left-menu-accor li {
    float: left;
    width: 100%;
}

.left-menu-accor li a {
    width: 90%;
    display: block;
    color: #999;
    font-size: 18px;
    padding: 5%;
    background: #fff;
}

.left-menu-accor li a:hover,
.left-menu-accor li a.active {
    color: #fff;
    background-color: #20d40c;
}


/*
.open a {
    color:#fff;
    background-color: #007136;
}*/

.left-menu-drop {
    float: left;
}

.left-menu-drop li {
    float: left;
}

.left-menu-drop li a {
    width: 80%;
    padding: 5% 5% 5% 15%;
    background-image: url(../images/left-menu-arrow.png);
    background-repeat: no-repeat;
    background-position: 25px 20px;
}

.left-menu-drop li a:hover,
.left-menu-drop li a.active {
    color: #20d40c;
    background-position: 25px -20px;
    background-color: #f9f9f9;
}

.close .left-menu-drop,
.close .accor-cont-drop {
    height: 0px;
    transition: height 1s ease-out;
    -webkit-transform: scaleY(0);
    -o-transform: scaleY(0);
    -ms-transform: scaleY(0);
    transform: scaleY(0);
    float: left;
    display: block;
}

.open .left-menu-drop,
.open .accor-cont-drop {
    width: 100%;
    display: block;
    float: left;
    -webkit-transform: scaleY(1);
    -o-transform: scaleY(1);
    -ms-transform: scaleY(1);
    transform: scaleY(1);
    -webkit-transform-origin: top;
    -o-transform-origin: top;
    -ms-transform-origin: top;
    transform-origin: top;
    -webkit-transition: -webkit-transform 0.4s ease-out;
    -o-transition: -o-transform 0.4s ease;
    -ms-transition: -ms-transform 0.4s ease;
    transition: transform 0.4s ease;
    box-sizing: border-box;
}

.open .accor-cont-drop {
    margin-bottom: 1px;
}
/*=====  End of Left Accordion CSS  ======*/

.inner-content {
    width: 72.5%;
    float: left;
    text-align: right;
}
.inner-content h2 {
    font-size: 24px;
    line-height: 48px;
    margin-bottom: 10px;
}
.inner-content p {
    font-size: 18px;
    line-height: 40px;
    margin-bottom: 10px;
}

/*======================================
=            Video Page CSS            =
======================================*/

.video-pg-top {
    width: 100%;
    float: left;
}

.show-video {
    width: 549px;
    float: left;
    padding: 0px;
}
.show {
    width: 100%;
}

.l-thumb {
    width: 148px;
    height: auto;
    float: left;
    position: relative;
}

.l-thumb a.play,
.vid-list-thumb a.play {
    width: 74px;
    height: 56px;
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -28px 0px 0px -37px;
}

.recent-video {
    width: 100%;
    float: left;
    margin-top: 30px;
}

.recent-video h2 {
    font-size: 24px;
    color: #444;
    float: left;
    width: 100%;
    margin-bottom: 10px;
}

.rv-hold {
    width: 94%;
    float: left;
    padding: 3%;
    background-color: #fff;
}

.vid-list {
    width: 100%;
    float: left;
    margin-bottom: 20px;
}

.vid-list-thumb {
    width: 310px;
    float: right;
    position: relative;
}
.vid-list-thumb img.thumb {
    width: 100%;
    float: left;
}

.vid-list-des {
    width: 60%;
    float: left;
    margin-top: 50px;
}

.vid-list-des h3 {
    width: 100%;
    float: left;
    margin-bottom: 10px;
    font-size: 18px;
    color: #303030;
    font-weight: 500;
    letter-spacing: 1px;
}

.vid-list-des h3 span {
    font-weight: bolder;
}

.vid-list-des p {
    font-size: 15px;
    color: #303030;
    font-weight: 300;
    line-height: 24px;
}


/*=====  End of Video Page CSS  ======*/

.books-listing {
    width: 100%;
    float: left;
}
.books-listing {
    float: right;
}
.books-listing li {
    float: right;
    width: 130px;
    text-align: center;
    margin: 20px 0px 0px 27px;
}
.books-listing li:nth-child(6n) {
    margin-left: 0;
}
.books-listing li img {
    margin-bottom: 15px;
}

/*======================================
=            Pagination CSS            =
======================================*/

.pagination-hold {
    width: 100%;
    float: left;
    margin: 40px 0px 20px;
    text-align: center;
}

.pagination {
    display: inline-block;
    padding-left: 0;
    border-radius: 4px;
    float: none !important;
}

.pagination > li {
    display: inline;
}

.pagination > li > a,
.pagination > li > span {
    padding: 10px 15px;
    margin-left: 0px;
    color: #cbc9c9;
    border: 0px none;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    font-weight: 500;
    font-size: 14px;
    margin-right: 10px;
}

.pagination > li > a:hover,
.pagination > li > span:hover,
.pagination > li > a:focus,
.pagination > li > span:focus {
    z-index: 2;
    color: #fff;
    background-color: #20d40c;
    border-color: #20d40c;
}

.pagination > .active > a,
.pagination > .active > span,
.pagination > .active > a:hover,
.pagination > .active > span:hover,
.pagination > .active > a:focus,
.pagination > .active > span:focus {
    z-index: 3;
    cursor: default;
    color: #fff !important;
    background-color: #20d40c;
    border-color: #20d40c;
}


input[type=text] {
    
    margin-right: 50px !important;
    margin-bottom: 5px;
    padding: 0 10px;
    width: 370px;
    height: 40px;
    margin: 8px 0;
    display: inline-block;
    border: 1px solid #ecebeb;
    border-radius: 4px;
    box-sizing: border-box;
}

input[type=email] {
    
    margin-right: 10px !important;
    margin-bottom: 5px;
    padding: 0 10px;
    width: 370px;
    height: 40px;
    margin: 8px 0;
    display: inline-block;
    border: 1px solid #ecebeb;
    border-radius: 4px;
    box-sizing: border-box;
}

input[name="name"] {
    
    margin-right: 35px !important;
   /* margin-bottom: 15px !important;
  */  
}

textarea {
    
    margin-right: 27px;
    margin-bottom: 5px;
    display: inline-block;
    border: 1px solid #ecebeb;
    border-radius: 4px;
    box-sizing: border-box;
    

  }
  


.send-btn {
    
    margin-right: 375px;
    margin-bottom: 5px;
    margin-top: 20px;
    font-size: 24px !important;
    padding: 4px 20px !important;
    color: #000 !important;
    background: #edc000 !important;
    border-radius: 8px;
    border: 0;
}
/*===== Hamza  ======*/
.inner-content > div:nth-child(even) {
    margin-bottom: 5px;
}
.inner-content > div:nth-child(odd) {
    margin-bottom: 5px;
}
.inner-content > div {
    line-height : 40px;
}

/*=====  End of Pagination CSS  ======*/